031-isvalid.xhtml (649B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <title>Ordered List: <ol> <li></title> 4 </head> 5 <body> 6 <!-- is block --> 7 <ol class="class" id="id" xml:lang="en" start="05"> 8 <li class="class" id="id2" xml:lang="en" value="9">text</li> 9 </ol> 10 11 <!-- can be empty --> 12 <ol></ol> 13 <ol> 14 <li></li> 15 <li></li> 16 </ol> 17 18 <!-- can contain structured inline --> 19 <ol> 20 <li>some <em>text</em> 21 <pre>more text</pre> 22 </li> 23 </ol> 24 25 <!-- can contain blocks --> 26 <ol> 27 <li> 28 <p>some</p> 29 <p>text</p> 30 </li> 31 </ol> 32 33 <!-- can contain interactive --> 34 <ol><li><a>text</a></li></ol> 35 </body> 36 </html>