-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (109 loc) · 3.66 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta nabe="description" content="Travelly is a travel agency website that helps you pick out your holiday vacination"/>
<meta name="robots" content="index,follow"/>
<link rel="icon" href="./icons/airplane.svg"/>
<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=Poppins:wght@400;500&display=swap" rel="stylesheet">
<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&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css"/>
<title>Travelly | Travel Agency</title>
</head>
<body>
<header class="main-head">
<nav>
<h1 id="logo">Travelly</h1>
<ul>
<li><a href="#locations">Locations</a></li>
<li><a href="#benefits">Benefits</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h2>Travel Beyond Limits.</h2>
<h3>Start you travel at an affordable price with Travelly <br />Contact us now bellow
</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 src="./img/cloud.png" class="moving-cloud-1 cloud"/>
<img src="./img/cloud.png" class="moving-cloud-2 cloud"/>
</header>
</section>
<section id="benefits">
<header class="benefits-head">
<h2>The Perfect Travel</h2>
<h3>
We cover everything for picking the perfect hotel <br />
to flight and destination.
</h3>
</header>
<div class="cards">
<div class="card">
<div class="card-icon">
<img src="./icons/route-solid.svg" alt="">
</div>
<h4>Travel</h4>
<p>Travel in over 250 countries with no efford.</p>
</div>
<div class="card">
<div class="card-icon">
<img src="./icons/bed-solid.svg" alt="">
</div>
<h4>Hotel</h4>
<p>Hotels located near popular areas.</p>
</div>
<div class="card">
<div class="card-icon">
<img src="./icons/plane-departure-solid.svg" alt="">
</div>
<h4>Fly</h4>
<p>Flight included in every purchased trip.</p>
</div>
</div>
</section>
<section id="contact">
<div class="form-wrapper">
<header class="form-head">
<h2>Contact Us</h2>
</header>
<form action="https://formspree.io/f/xwkylvav" method="POST">
<div class="name-form">
<label for="name">Name:</label>
<input type="text" name="name" required />
</div>
<div class="email-form">
<label for="email">E-mail:</label>
<input type="email" required name="_replyto" />
</div>
<button value="Send" type="submit">Submit</button>
</form>
</div>
</section>
</main>
<footer>
<div class="footer-wrapper">
<h5>Travelly ©</h5>
<ul>
<li><a href="#"><img src="./icons/twitter.svg" alt=""></a></li>
<li><a href="#"><img src="./icons/youtube.svg" alt=""></a></li>
<li><a href="#"><img src="./icons/instagram.svg" alt=""></a></li>
</ul>
</div>
</footer>
</body>
</html>