blob: 28e545a12919de3168e7451fea397f734f236da4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Ordered List: <ol> <li></title>
</head>
<body>
<!-- is block -->
<ol class="class" id="id" lang="en" start="05">
<li class="class" id="id2" lang="en" value="9">text</li>
</ol>
<!-- can be empty -->
<ol></ol>
<ol>
<li></li>
<li></li>
</ol>
<!-- can contain structured inline -->
<ol>
<li>some <em>text</em>
<pre>more text</pre>
</li>
</ol>
<!-- can contain blocks -->
<ol>
<li>
<p>some</p>
<p>text</p>
</li>
</ol>
<!-- can contain interactive -->
<ol><li><a>text</a></li></ol>
</body>
</html>
|