Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!doctype html> <title>Example</title> <style> body { line-height: 0.8em; counter-reset: chapter; } h1 { font-size: 18px; } h1:before { content: "Chapter " counter(chapter) ": "; counter-increment: chapter; } </style> <h1>Apples</h1> <p>I like apples.</p> <h1>Oranges</h1> <p>Oranges are good.</p> <h1>Bananas</h1> <p>Throw one in your smoothie.</p>