Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> body { /* Set "section" to 0 */ counter-reset: section; } h1 { /* Set "subsection" to 0 */ counter-reset: subsection; } h1::before { counter-increment: section; content: "Book " counter(section) ": "; } h2::before { counter-increment: subsection; content: counter(section) "." counter(subsection) " "; } </style> </head> <body> <h1>HTML</h1> <h2>HTML-Basic</h2> <h2>HTML-Vorlagen</h2> <h2>HTML-Hinweise</h2> <h2>HTML-Tags</h2> <h1>CSS</h1> <h2>CSS-Basic</h2> <h2>CSS-Hinweise</h2> <h2>CSS Advanced</h2> <h2>CSS-Guides</h2> <h2>CSS-Selektoren</h2> <h2>CSS-Eigenschaften</h2> </body> </html>