-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path9_stylinglist.html
More file actions
32 lines (32 loc) · 910 Bytes
/
9_stylinglist.html
File metadata and controls
32 lines (32 loc) · 910 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>style list</title>
<style>
nav ul li {
/* background-color: greenyellow; */
list-style: devanagari;
list-style-position: inside;
/* border:2px solid black; */
padding: 23px;
/* list-style-image:url() ; */
/* list-style: disc inside url(https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExejV6OXJhajM4bThxMnkxaWZlOWd5NWk0eTdseHZnY2Y1NXFwMWNwZSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/MDJ9IbxxvDUQM/giphy.gif); */
list-style: none ;
}
nav ul{
display: flex;
}
</style>
</head>
<body>
<nav>
<ul >
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</nav>
</body>
</html>