-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS_Task2.html
More file actions
66 lines (66 loc) · 2.01 KB
/
Copy pathCSS_Task2.html
File metadata and controls
66 lines (66 loc) · 2.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Task2 </title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.navbar a:hover{
background-color: rgb(233, 177, 57);
}
.vertical{
display: flex;
flex-direction: column;
background-color: rgb(117, 213, 235);
width: 150px;
position: relative;
top: 20px;
left: 20px;
}
.vertical a{
display: block;
text-decoration: none;
font-size: large;
padding: 10px 20px;
}
.horizontal{
position: absolute;
left: 300px;
top: 60px;
display: flex;
flex-direction: row;
background-color: #d5d5d5;
text-align: center;
margin-left: 20px;
width:auto;
}
.horizontal a{
font-size: large;
padding: 5px 10px;
text-decoration: none;
display: inline-block;
}
.navbar{
flex-wrap: wrap;
}
</style>
</head>
<body>
<div class="vertical navbar">
<a href="" class="A">Home</a></li>
<a href="">Java</a></li>
<a href="">CSS</a></li>
<a href="">HTML</a></li>
<a href="">Bootstrap</a></li>
</div>
<div class="horizontal navbar">
<a href="" class="A">Home</a></li>
<a href="">Java</a></li>
<a href="">CSS</a></li>
<a href="">HTML</a></li>
<a href="">Bootstrap</a></li>
</div>
</body>
</html>