-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path8_list.html
More file actions
73 lines (67 loc) · 1.27 KB
/
8_list.html
File metadata and controls
73 lines (67 loc) · 1.27 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Q.8 List</title>
</head>
<body>
<h2>Unordered List:</h2>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<h2>Ordered List:</h2>
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
<h2>Nested Unordered List:</h2>
<ul>
<li>
Vegetables
<ul>
<li>Carrot</li>
<li>Brocolli</li>
</ul>
</li>
<li>Dessert</li>
<li>
Fruits
<ul>
<li>Apple</li>
<li>Banana</li>
</ul>
</li>
</ul>
<h2>Nested Ordered List:</h2>
<ol>
<li>
School
<ol>
<li>Class 1</li>
<li>Class 2</li>
</ol>
</li>
<li>College</li>
<li>
University
<ol>
<li>Bachelor</li>
<li>Masters</li>
</ol>
</li>
</ol>
<h2>Definition List:</h2>
<dl>
<dt>HTML</dt>
<dd>HyperText Markup Language</dd>
<dt>CSS</dt>
<dd>Cascading Style Sheets</dd>
<dt>JS</dt>
<dd>JavaScript</dd>
</dl>
</body>
</html>