DeveloperBreeze

بناء موقع ويب 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.

دليل شامل لتطوير الويب: بناء موقع بسيط باستخدام HTML, CSS وJavaScript

Tutorial September 27, 2024
javascript css html

الآن بعد أن قمنا بإنشاء الهيكل، سنقوم بإضافة بعض التنسيقات باستخدام CSS. سنقوم بإنشاء ملف يسمى styles.css يحتوي على التالي:

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 20px;
    background-color: white;
    margin: 10px 0;
}

h2 {
    color: #333;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}