-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.html
54 lines (50 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title></title>
<style>
body {
margin: 0;
}
.footer ul {
list-style-type: none;
display: flex;
justify-content: space-between;
gap: 16px;
}
.footer a {
text-decoration: none;
color: #ffffff;
font-weight: bold;
font-size: 14pt;
text-align: center;
}
.footer img {
width: 130px;
height: auto;
}
.footer {
display: flex;
background: #00675b;
justify-content: flex-start;
width: 100%;
height: 55px;
margin: 0;
}
</style>
</head>
<body>
<div class="footer">
<img src="resources/logo.png" alt="Travel Dial" />
<div>
<ul>
<li><a href="About.html">About</a></li>
<li><a href="Pricing.html">Pricing</a></li>
<li><a href="Company.html">Company</a></li>
<li><a href="Blog.html">Blog</a></li>
</ul>
</div>
</div>
</body>
</html>