1<ol>
2 <lh>ol Header</lh>
3 <li>Item One</li>
4 <li>Item Two</li>
5 <li>Item Thre</li>
6</ol>
1<p>Finishing places of contestants not in the winners’ circle:</p>
2
3<ol start="4">
4 <li>Speedwalk Stu</li>
5 <li>Saunterin’ Sam</li>
6 <li>Slowpoke Rodriguez</li>
7</ol>
8
1<ol>
2 <li>first item</li>
3 <li>second item <!-- closing </li> tag not here! -->
4 <ol>
5 <li>second item first subitem</li>
6 <li>second item second subitem</li>
7 <li>second item third subitem</li>
8 </ol>
9 </li> <!-- Here's the closing </li> tag -->
10 <li>third item</li>
11</ol>
12
1<p>Finishing places of contestants not in the winners’ circle:</p>
2
3<ol start="9">
4 <li>Speedwalk Stu</li>
5 <li>Saunterin’ Sam</li>
6 <li>Slowpoke Rodriguez</li>
7</ol>
8