-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav3.html
More file actions
50 lines (48 loc) · 818 Bytes
/
nav3.html
File metadata and controls
50 lines (48 loc) · 818 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<html>
<head>
<style>
#nav{
height: 40px;
width: 690px;
background-color:#3e56c3;
margin-top:50px;
margin-left:50px;
border-radius:5px;
}
#nav ul{
list-style-type:none;
}
#nav ul li{
display:inline-box;
margin-left:30px;
float:left;
}
#nav ul li a{
text-decoration: none;
color:white;
font-size:30px;
font-family:"Brush Script MT";
}
#circle{
height:100px;
width:100px;
border:5px solid white;
border-radius:100px;
background-color:#3e56c3;
margin-top:-35px;
margin-right:-90px;
}
</style>
</head>
<body>
<div id="nav">
<ul >
<li> <a href="#">Home</a></li>
<li> <a href="#">About Us</a></li>
<li> <a href="#"><div id="circle"></div></a></li>
<li> <a href="#" style="margin-left:100px;">Services</a></li>
<li> <a href="#">Reach Us</a></li>
</ul>
</div>
</body>
</html>