Menu
Coddy logo textTech
flag Ar iconالعربيةdown icon

إعداد الخط والخلفية

الدرس 5 من 13 في دورة شريط جانبي | مشروع Front-end على Coddy.

challenge icon

التحدي

سهل

1. قم بتعيين خط الـ body إلى 'Arial'.

2. قم بتعيين لون الخلفية للـ body إلى اختيارك من الألوان (ولكن ليس الأبيض).

جرّب بنفسك

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
    <title>Sidebar</title>
</head>
    <body>
        <button id="openSidebarBtn">Open</button>
        <div id="sidebar" class="sidebar">
            <button id="closeSidebarBtn">Close</button>
            <p>Home</p>
            <p>About</p>
            <p>Services</p>
            <p>Contact</p>
        </div>
        <script src="script.js"></script>
    </body>
</html>

جميع دروس شريط جانبي | مشروع Front-end