-
Notifications
You must be signed in to change notification settings - Fork 69
/
lists.html
43 lines (37 loc) · 1012 Bytes
/
lists.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
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lists in HTML</title>
<!--Styling the form-->
<style>
body {
background-color: bisque;
}
li {
padding: 2px 5px;
}
</style>
</head>
<body>
<h1>Lists in HTML</h1>
<h2>Unordered List</h2>
<!--<ul> tag stands for unordered list-->
<ul style="list-style-type:square;">
<!--<li> tag is used to enter elements in the list-->
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<h2>Ordered List</h2>
<!--<ol> tag stands for ordered list-->
<ol>
<!--<li> tag is used to enter elements in the list-->
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
</body>
</html>