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> body { counter-reset: section; } h2::before { counter-increment: section 2; content: "Section " counter(section) ": "; } </style> </head> <body> <h1>Utiliser les compteurs CSS</h1> <h2>Tutoriel HTML</h2> <p>Une description ici...</p> <h2>Tutoriel CSS</h2> <p>Une description ici...</p> <h2>Tutoriel JavaScript</h2> <p>Une description ici...</p> <h2>Tutoriel Python</h2> <p>Une description ici...</p> <h2>Tutoriel SQL</h2> <p>Une description ici...</p> </body> </html>