Skip to content

Commit 96fb123

Browse files
committed
Video 25 Completed
1 parent c5d533a commit 96fb123

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

Video 25/index.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>CSS Lists</title>
7+
<style>
8+
nav ul li{
9+
list-style: devanagari;
10+
list-style-type: "🔥";
11+
/* background-color: yellow; */
12+
/* list-style-position: inside; */
13+
border: 2px solid black;
14+
/* list-style: disc inside url("https://user-images.githubusercontent.com/14011726/94132137-7d4fc100-fe7c-11ea-8512-69f90cb65e48.gif"); */
15+
/* list-style-image: url("https://user-images.githubusercontent.com/14011726/94132137-7d4fc100-fe7c-11ea-8512-69f90cb65e48.gif"); */
16+
}
17+
18+
</style>
19+
</head>
20+
<body>
21+
<nav>
22+
<ul>
23+
<li>Home</li>
24+
<li>About</li>
25+
<li>Contact</li>
26+
</ul>
27+
</nav>
28+
</body>
29+
</html>

0 commit comments

Comments
 (0)