-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
64 lines (55 loc) · 1.83 KB
/
footer.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Footer</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap');
.footer-wrapper {
background-color: #37392E;
color: white;
padding: 10px;
font-family: Inter, Verdana, Geneva, Tahoma, sans-serif;
}
.footer {
display: flex;
justify-content: space-between;
align-items: center;
}
.left-section > img {
width: 50px;
}
.right-section > ul > li {
list-style-type: none;
display: inline;
padding: 10px;
}
.icon {
width: 30px;
background-color: rgb(3, 158, 158);
border-radius: 20px;
}
.icon:hover {
cursor: pointer;
background-color: aqua;
}
</style>
</head>
<body>
<div class="footer-wrapper">
<div class="footer">
<div class="left-section"><img src="./Wbsly-Logo/Logo.svg"></div>
<div class="middle-section">Made with 💖 by Erik</div>
<div class="right-section">
<ul>
<li><a href="https://github.com/erikwbsly" target="_blank"><img class="icon" src="./Wbsly-Logo/github.svg"></a></li>
<li><a href="https://www.linkedin.com/in/erik-wbsly/" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/erikwbsly" target="_blank">Github</a></li>
<li><a href="https://www.linkedin.com/in/erik-wbsly/" target="_blank">LinkedIn</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>