-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (74 loc) · 2.47 KB
/
index.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Travelly | Travel Agency.</title>
<link href="https://fonts.googleapis.com/css2?family=Pattaya&family=Poppins:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header class="main-Header">
<nav>
<h1 class="logo-Header">
Travelly
</h1>
<ul>
<li>
<a href="#locations">Locations</a>
</li>
<li>
<a href="">Benefits</a>
</li>
<li>
<a href="">Contact</a>
</li>
</ul>
</nav>
</header>
<main>
<section class="hero-Section">
<h2> Travel beyond limits </h2>
<h3>
Start your travel at an affordable price with Travelly
<br> Contact us now below.
</h3>
<button>Book Now</button>
</section>
<section id="locations">
<header class="locations-head">
<h2>The Perfect Travelling Experience.</h2>
<h3>
We cover everything from picking the perfect hotel,
<br /> flight and travelling destination.
</h3>
<img class="cloud1 cloud" src="./images/cloud.png" alt="">
<img class="cloud2 cloud" src="./images/cloud.png" alt="">
</header>
</section>
</main>
<footer>
<div class="footer-wrapper">
<h5>Travelly ©</h5>
<ul>
<li>
<a href="#" title="twitter-social-media">
<img src="./icons/twitter.svg" alt="twitter-social-media" />
</a>
</li>
<li>
<a href="#" title="youtube-social-media">
<img src="./icons/youtube.svg" alt="youtube-social-media" />
</a>
</li>
<li>
<a href="#" title="instagram-social-media">
<img src="./icons/instagram.svg" alt="instagram-social-media" />
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>