-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex25.html
More file actions
32 lines (32 loc) · 783 Bytes
/
Copy pathindex25.html
File metadata and controls
32 lines (32 loc) · 783 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Lists</title>
<style>
nav ul li{
/* list-style: devanagari; */
background-color: blue;
color: wheat;
list-style-position: inside;
border: 2px solid black;
/* list-style-type: emoji; */ /* we can also insert image in place of bullets */
/* list-style-image: url(); */
}
nav ul{
display: flex;
padding: 23px;
}
</style>
</head>
<body>
<nav>
<ul>
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</nav>
</body>
</html>