Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!doctype html> <title>Example</title> <style> article { line-height: 0.8em; counter-reset: myCounter; } h1 { font-size: 18px; } h1:before { content: counter(myCounter) ". "; counter-increment: myCounter; } </style> <article> <h1>Apples</h1> <p>I like apples.</p> <h1>Oranges</h1> <p>Oranges are good.</p> <h1>Bananas</h1> <p>A perfect snack.</p> </article>
Preview