Menu
Coddy logo textTech

Icons hinzufügen

Lektion 6 von 12 im Kurs Untere Navigationsleiste - HTML/CSS Projekt von Coddy.

challenge icon

Aufgabe

Einfach

Füge in jedem Listen-Tag <li> das entsprechende Symbol hinzu:

  1. In der Liste "Home" füge hinzu:

    <i class="fa-solid fa-house"></i> 
  2. In der Liste "User" füge hinzu:

    <i class="fa-solid fa-user"></i> 
  3. In der Liste "Dashboard" füge hinzu:

    <i class="fa-solid fa-rocket"></i>
  4. In der Liste "Chats" füge hinzu:

    <i class="fa-solid fa-people-group"></i>
  5. In der Liste "Cart" füge hinzu:

    <i class="fa-solid fa-cart-shopping"></i>

Probier es selbst

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
</head>
    <body>
        <!-- Schreibe hier den HTML-Code -->
        <script src="script.js"></script>
    </body>
</html>

Alle Lektionen in Untere Navigationsleiste - HTML/CSS Projekt