-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
251 lines (244 loc) · 12.1 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<!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>now-tour</title>
<!-- Favicon Image -->
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/png" />
<!-- Font Awesome Imagery -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" type="text/css" />
<!-- Personal CSS -->
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
</head>
<body>
<div class="container">
<!-- Navbar -->
<div class="open-navbar-icon navbar-icon center">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<div class="navbar-wrapper">
<nav class="navbar">
<div class="close-navbar-icon navbar-icon center">
<div class="line line-1"></div>
<div class="line line-2"></div>
</div>
<div class="nav-list">
<a href="#" class="nav-link center">Home</a>
<a href="#" class="nav-link center">Tours</a>
<a href="#" class="nav-link center">About Us</a>
<a href="#" class="nav-link center">Offer</a>
<a href="#" class="nav-link center">Contact</a>
</div>
</nav>
</div>
<!-- End Navbar -->
<!-- Header -->
<header class="header center">
<div class="header-text">
<h1 class="heading">Amazing World</h1>
<p class="header-paragraph">"Explore our planet - it leaves you speechless, with many stories to share."</p>
</div>
<img src="assets/img/main-balloon-trans1.png" alt="Header Image" class="header-image"/>
<div class="logo">
<h1>
<span class="center">n</span>
<span class="center">o</span>
<span class="center">w</span>
<span class="center">-</span>
<span class="center">t</span>
<span class="center">o</span>
<span class="center">u</span>
<span class="center">r</span>
</h1>
</div>
</header>
<!-- End Header -->
<!-- Amazing Tours -->
<section class="amazing-tours">
<h1 class="amazing-tours-heading">Our Amazing Tours</h1>
<div class="cards-wrapper">
<!-- Wild Safari Tour -->
<div class="card">
<div class="card-top-side">
<img src="assets/img/safari-card.png" alt="Safari Tour" class="card-image"/>
<h1 class="tour-id">Wild Safari</h1>
<ul class="card-list">
<li class="card-list-item">14 days tour</li>
<li class="card-list-item">Singles & groups welcome</li>
<li class="card-list-item">Experienced tour guides</li>
<li class="card-list-item">Luxury tents</li>
<li class="card-list-item">Full board</li>
</ul>
<button class="nav-button">
price >>
</button>
</div>
<div class="card-rear-side center">
<button class="nav-button">
<< back
</button>
<h3 class="tour-cost">£699</h3>
<button class="card-button">Booking</button>
</div>
</div>
<!-- End Wild Safari Tour -->
<!-- Mountains Tour -->
<div class="card">
<div class="card-top-side">
<img src="assets/img/mountain-card.png" alt="Mountain Tour" class="card-image"/>
<h1 class="tour-id">Mountain Trekking</h1>
<ul class="card-list">
<li class="card-list-item">7 days tour</li>
<li class="card-list-item">Singles & groups welcome</li>
<li class="card-list-item">Experienced tour guides</li>
<li class="card-list-item">Gites</li>
<li class="card-list-item">Half board</li>
</ul>
<button class="nav-button">
price >>
</button>
</div>
<div class="card-rear-side center">
<button class="nav-button">
<< back
</button>
<h3 class="tour-cost">£399</h3>
<button class="card-button">Booking</button>
</div>
</div>
<!-- End Mountains Tour -->
<!-- Under-Water Diving Tour -->
<div class="card">
<div class="card-top-side">
<img src="assets/img/diving-card.png" alt="Diving Tour" class="card-image"/>
<h1 class="tour-id">Reef diving</h1>
<ul class="card-list">
<li class="card-list-item">10 days tour</li>
<li class="card-list-item">Singles & groups welcome</li>
<li class="card-list-item">Experienced tour guides</li>
<li class="card-list-item">Water Bungalow</li>
<li class="card-list-item">Full board</li>
</ul>
<button class="nav-button">
price >>
</button>
</div>
<div class="card-rear-side center">
<button class="nav-button">
<< back
</button>
<h3 class="tour-cost">£899</h3>
<button class="card-button">Booking</button>
</div>
</div>
<!-- End Under-Water Diving Tour -->
</div>
</section>
<!-- End Amazing Tours -->
<!-- Customer Comments -->
<section class="customer-comments">
<div class="video-container">
<video class="bg-video" autoplay muted loop>
<source src="assets/img/clouds-bg.mp4" type="video/mp4" />
</video>
</div>
<div class="customer-comments-wrapper">
<!-- Safari TourCustomer -->
<div class="comments-bg">
<div class="comments">
<img src="assets/img/lion.png" alt="Comments Image" class="customer-image"/>
<div class="comments-text">
<h1 class="comments-heading">Savour very special moments.</h1>
<p class="comments-paragraph">
Here is why I am heading on a Southern Serengeti Safari during
what we call the Green Season. Starts from November to May
and typically when the short rains start until the end of the
long rains.
</p><br>
<p class="comments-paragraph second-paragraph">
Because of birthing and the ease of food for the big cats, dramatic
scenes of hunts are possible. Think cheetahs showing off their
full-throttle speed bringing down an adult wildebeest or lionesses
working together to tackle a zebra. Calves are easy prey.
</p>
</div>
</div>
</div>
<!-- Mountain Tour Customer -->
<div class="comments-bg">
<div class="comments">
<img src="assets/img/mountain.png" alt="Comments Image" class="customer-image"/>
<div class="comments-text">
<h1 class="comments-heading">Unimaginable views from high.</h1>
<p class="comments-paragraph">
No matter how you do the O or W treks you will have a great trip
and get to see one of the most beautiful parts of the world in the
form of the three Torres del Paine peaks, as well as the unspoiled
wilderness of this far southern region of the Americas.
</p><br>
<p class="comments-paragraph second-paragraph">
The W is the busier route thanks to being shorter and really only
taking in the towers as a main event. The O is harder going by
virtue of the length and a brief time over 3000 metres so you will
get more time to commune with the mountain gods alone.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Customer Comments -->
<!-- Contact Us -->
<section class="contact-us">
<h1 class="contact-us-heading">Contact Us</h1>
<form class="contact-us-form center">
<div class="input-group">
<label>Full Name *</label>
<input type="text" class="contact-us-input" placeholder="Enter Your Name">
</div>
<div class="input-groups">
<div class="input-group">
<label>Email *</label>
<input type="email" class="contact-us-input" placeholder="Enter Your Email">
</div>
<div class="input-group">
<label>Phone *</label>
<input type="text" class="contact-us-input" placeholder="Enter Phone Number">
</div>
</div>
<div class="input-group">
<label>Message</label>
<textarea class="form-textarea" placeholder="Enter Message Here..."></textarea>
</div>
<input type="submit" value="submit" class="form-btn" />
</form>
</section>
<!-- End Contact Us -->
<!-- Footer -->
<footer class="footer">
<div class="footer-list">
<a href="#" class="footer-link">Home</a>
<a href="#" class="footer-link">Tours</a>
<a href="#" class="footer-link">About Us</a>
<a href="#" class="footer-link">Offer</a>
<a href="#" class="footer-link">Contact</a>
</div>
<p class="footer-paragraph"> © NOW-TOUR | <span id="developer-years"></span><br>design | Paul Friel</p>
</footer>
<!-- End Footer -->
</div>
<!-- Scroll to top of page button -->
<a href="#move-up" class="btn btn-up move-top" title="Move to top"><i
class="fas fa-angle-double-up"></i></a>
<!-- JS Library for Bootstrap -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<!-- Personal JS -->
<script src="assets/js/main.js"></script>
</body>
</html>