x
 
1
<!doctype html>
2
<title>Example</title>
3
<style>
4
  article {
5
    line-height: 0.8em;
6
    counter-reset: myCounter;
7
  }
8
  h1 {
9
    font-size: 18px;
10
    }
11
  h1:before {
12
    content: counter(myCounter) ". ";
13
    counter-increment: myCounter;
14
  }
15
</style>
16
17
<article>
18
  <h1>Apples</h1>   
19
  <p>I like apples.</p>
20
21
  <h1>Oranges</h1>
22
  <p>Oranges are good.</p>
23
24
  <h1>Bananas</h1>  
25
  <p>A perfect snack.</p>
26
</article>