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 { border-left: 5px solide rouge; couleur de fond: #f1f1f1; list-style-type: none; padding: 10px; } </style> </head> <body> <h2>Liste avec une bordure gauche rouge</h2> <ul> <li>Café</li> <li>Thé</li> <li>Coca Cola</li> </ul> </body> </html>