Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> h1.intro { couleur: bleu; } p.important { couleur: vert; } </style> </head> <body> <h1 class="intro">Header 1</h1> <p>Un paragraphe.</p> <p class="important">Notez que c'est un paragraphe important. :)</p> </body> </html>