-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
35 lines (35 loc) · 859 Bytes
/
list.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lists Demo</title>
</head>
<body>
<header>
<h3>Demo of html lists</h3>
</header>
<main>
<section>
<ul>
<p><b>Unorderd list of FRUITS</b></p>
<li> <u>Apple</u> </li>
<ul>
<!-- nested list -->
<li>season :Winter</li>
<li>color:red</li>
</ul>
<li> <u>Banana</u> </li>
<li> <u>Strawberry</u> </li>
</ul>
</section>
<section>
<ol>
<p> <u> <b>Ordred list of Greetings</b> </u> </p>
<li>Hello</li>
<li>Hi</li>
<li>Namaste</li>
</ol>
</section>
</main>
<footer></footer>
</body>
</html>