forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
book.html
52 lines (51 loc) · 1.48 KB
/
book.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="BuddyTrail is a travel agency website that helps you pick out your holiday vacation"
/>
<meta name="robots" content="index,follow" />
<link rel="stylesheet" href="/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Pattaya&family=Poppins:wght@400;500&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="/icons/airplane.svg" />
<title>BuddyTrail</title>
</head>
<body>
<header class="main-head">
<nav>
<h1 id="logo">BuddyTrail</h1>
<ul>
<li><a href="#locations">Location</a></li>
<li><a href="#benefits">Benefits</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
</main>
<footer>
<div class="footer-wrapper">
<h5>BuddyTrail ©</h5>
<ul>
<li>
<a href="#"><img src="icons/twitter.svg" /></a>
</li>
<li>
<a href="#"><img src="icons/instagram.svg" /></a>
</li>
<li>
<a href="#"><img src="icons/youtube.svg" /></a>
</li>
</ul>
</div>
</footer>
</body>
</html>