-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTASK5CSS.html
More file actions
70 lines (66 loc) · 1.9 KB
/
TASK5CSS.html
File metadata and controls
70 lines (66 loc) · 1.9 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<html>
<head>
<title></title>
<style>
.a{
border: 2px solid black;
padding-left: 10px;
padding-top: 20px;
padding-bottom: 30px;
width: 521.5px;
height: 50px;
margin: auto;
}
ul{
list-style: none;
color: rgb(7, 7, 246);
display: inline;
padding: 1px;
}
.b{
border: 1px solid white;
width: 520px;
height:50px;
padding-top: 13px;
background-color:rgb(220, 218, 218);
}
li{
display: inline;
padding: 13px;
font-size: xx-large;
border-right: 2px solid blue;
}
.c{
color: white;
padding-top: 13px;
padding-bottom: 13px;
background-color: gray;
}
#i{
width: 250px;
margin: auto;
padding: 30px;
font-size: large;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.c1{
border: 0px;
}
</style>
</head>
<body>
<div id="i">
<b>Horizontal Navigation Bar</b>
</div>
<div class="a">
<nav class="b">
<ul><li class="c">Home</li></ul>
<ul ><li>Java</li>
<li>CSS</li>
<li>HTML</li>
<li class="c1"></li>
</ul>
</nav>
</div>
</body>
</html>