-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlists.html
More file actions
36 lines (36 loc) · 963 Bytes
/
lists.html
File metadata and controls
36 lines (36 loc) · 963 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
<html>
<body>
<ol>
<li>Ordered List</li>
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>Four</li>
</ol>
<br>
<ul>
<li>Unordered List</li>
<li>Item</li>
<li>Another Item</li>
<li>Etc</li>
</ul>
<br>
<dl>
<dt>Definition List</dt>
<dd>Example Definition</dd>
<dt>Sashimi</dt>
<dd>Sliced raw fish that is served with condiments such as shredded daikon radish or ginger root, wasabi and soy sauce.</dd>
<dt>Scale</dt>
<dd>A device used to accurately measure the weight of ingredients.</dd>
</dl>
<br>
<ul>
<li>Nested List</li>
<li>Level 1</li>
<ul>
<li>Nested List</li>
<li>Level 2</li>
</ul>
</ul>
</body>
</html>