-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.html
54 lines (50 loc) · 1.11 KB
/
header.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;
}
ul {
list-style-type: none;
display: flex;
justify-content: space-between;
gap: 16px;
}
a {
text-decoration: none;
color: #ffffff;
font-weight: bold;
font-size: 14pt;
text-align: center;
}
img {
width: 130px;
height: auto;
}
.header {
display: flex;
background: #00675b;
justify-content: flex-start;
width: 100vh;
height: 60px;
}
</style>
</head>
<body>
<div class="header">
<img src="resources/logo.png" alt="Travel Dial" />
<div>
<ul>
<li><a href="Destination.html">Destinations</a></li>
<li><a href="Galley.html">Gallery</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Login.html">Login/Signup</a></li>
<li><a href="partner.html">Partner with us</a></li>
</ul>
</div>
</div>
</body>
</html>