Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> ul { list-style-type: none; marge: 0; padding: 0; débordement: caché; couleur de fond: #333; } li { flottant : gauche ; } li a { affichage: inline-block; couleur: blanc; text-align: center; padding: 14px 16px; text-decoration: none; } li a:hover { couleur de fond: #111; } .active { couleur-de-fond: rouge; } </style> </head> <body> <ul> <li><a href="#home" class="active">Accueil</a></li> <li><a href="#news">Actualités</a></li> <li><a href="#contact">Contact</a></li> <li><a href="#about">À propos</a></li> </ul> </body> </html>