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; } li { afficher: inline; } </style> </head> <body> <p>Affichez une liste de liens sous forme de menu horizontal :</p> <ul> <li><a href="#home">Accueil</a></li> <li><a href="#news">Nouvelles</a></li> <li><a href="#contact">Contact</a></li> <li><a href="#about">À propos</a></li> </ul> </body> </html>