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> body { counter-reset: section; } h1 { counter-reset: subsection; } h1::before { compteur-incrément: section; content: "Section " counter(section) ". "; } h2::before { counter-increment: sous-section; contenu: compteur(section) "." compteur(sous-section) " "; } </style> </head> <body> <h1>Tutoriels HTML/CSS</h1> <h2>HTML</h2> <h2>CSS</h2> <h2>Bootstrap</h2> <h2>W3.CSS</h2> <h1>Tutoriels de Scripting</h1> <h2>JavaScript</h2> <h2>jQuery</h2> <h2>React</h2> <h1>Tutoriels de Programmation</h1> <h2>Python</h2> <h2>Java</h2> <h2>C++</h2> </body> </html>