تطبيقات ويب Development Tutorials, Guides & Insights
Unlock 1+ expert-curated تطبيقات ويب tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your تطبيقات ويب skills on DeveloperBreeze.
Adblocker Detected
It looks like you're using an adblocker. Our website relies on ads to keep running. Please consider disabling your adblocker to support us and access the content.
كيفية بناء تطبيقات تفاعلية باستخدام JavaScript و HTML و CSS
Tutorial September 26, 2024
javascript
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.app-container {
text-align: center;
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
input {
padding: 10px;
width: 200px;
margin-bottom: 10px;
}
button {
padding: 10px 20px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
#greeting {
margin-top: 20px;
font-size: 18px;
color: #333;
}- قمنا بإضافة الأنماط لتنسيق النموذج والزر، بالإضافة إلى تحسين التصميم ليكون مركزيًا في الصفحة.