-
Notifications
You must be signed in to change notification settings - Fork 0
/
travel.html
55 lines (49 loc) · 1.7 KB
/
travel.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome - Pravel</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./media-queries.css">
<script src="./script/nav.js" defer></script>
<script src="./script/ripple.js" defer></script>
</head>
<body>
<header>
<div class="container">
<div><a href="index.html"><img src="./images/img_logo.png" class="logo" alt=""></a></div>
<div class="nav-menu"><span>Menu</span></div>
<ul class="nav-links">
<li><a href="./travel.html" class="nav-link">Travel</a></li>
<li><a href="./sign-in.html" class="nav-link">Account</a></li>
<li><a href="./about.html" class="nav-link">About</a></li>
</ul>
</div>
</header>
<footer>
<div class="container">
<div class="footer-part">
<p>FAQ</p>
<p>Flight Rules</p>
<p>Terms and Condition</p>
</div>
<div class="footer-part">
<p>Help Center</p>
<p>Corporate Information</p>
<p>Contact Us</p>
</div>
<div class="footer-part">
<p>Redeem Gift Cards</p>
<p>Privacy</p>
<p>Preferences</p>
</div>
<div class="footer-part">
<p>Buy Gift Cards</p>
<p>Legal Notices</p>
<p>Made by Richard Manansala</p>
</div>
</div>
</footer>
</body>
</html>