-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS_Task-4.html
More file actions
57 lines (50 loc) · 1.39 KB
/
CSS_Task-4.html
File metadata and controls
57 lines (50 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS_Task-4</title>
<style>
.mySidenav a {
position: absolute;
left: -80px;
transition: 0.5s;
padding: 15px;
width: 100px;
text-decoration: none;
font-size: 20px;
color: white;
border-radius: 0 5px 5px 0;
}
.mySidenav a:hover {
left: 0;
}
.info {
top: 80px;
background-color: rgb(7, 109, 7);
}
.resume{
top: 140px;
background-color: rgb(28, 132, 173);
}
.projects {
top: 200px;
background-color: red;
}
.contact {
top: 260px;
background-color: grey;
}
</style>
</head>
<body>
<div class="mySidenav" >
<a href="#" class="info">Info</a>
<a href="#" class="resume">Resume</a>
<a href="#" class="projects">Projects</a>
<a href="#" class="contact">Contact</a>
</div>
<div style="margin-left:150px; margin-top: 80px;">
<h2>Hoverable Sidenav Buttons</h2>
<p>Hover over the buttons in the left side navigation to open them.</p>
</div>
</body>
</html>