-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlist.html
More file actions
44 lines (41 loc) · 904 Bytes
/
list.html
File metadata and controls
44 lines (41 loc) · 904 Bytes
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
39
40
41
42
43
44
<h1 id="list"><a href="#list"># List</a></h1>
<h2>Unordered list</h2>
<ul>
<li>List item one
<ul>
<li>Nested Unordered list item one</li>
<li>Nested Unordered list item two</li>
</ul>
</li>
<li>List item two
<ol>
<li>Nested Ordered list item one</li>
<li>Nested Ordered list item two</li>
</ol>
</li>
<li>List item three</li>
</ul>
<h2>Ordered list</h2>
<ol>
<li>List item one
<ol>
<li>Nested Ordered list item one</li>
<li>Nested Ordered list item two</li>
</ol>
</li>
<li>List item two
<ul>
<li>Nested Unordered list item one</li>
<li>Nested Unordered list item two</li>
</ul>
</li>
<li>List item three</li>
</ol>
<h2>Definition List</h2>
<dl>
<dt>Definition Title One</dt>
<dd>First definition description</dd>
<dt>Definition Title Two</dt>
<dd>Second definition description</dd>
</dl>
<hr>