Menu
Coddy logo textTech

Sidebar-Inhalt

Lektion 4 von 13 im Kurs Sidebar | Front-end-Projekt von Coddy.

challenge icon

Aufgabe

Einfach

1. Erstellen Sie innerhalb von 'sidebar', unterhalb der Schaltfläche 'Close', vier Paragraph-Tags, einschließlich der Texte 'Home', 'About', 'Services' und 'Contact'.

2. Setzen Sie den margin des body-Tags in der CSS-Datei auf Null.

Probier es selbst

<!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>
            <!-- Write HTML code here -->

        </div>
        <script src="script.js"></script>
    </body>
</html>

Alle Lektionen in Sidebar | Front-end-Projekt