-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
343 lines (334 loc) · 12 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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="keywords"
content="Weather, Country, Explore, Wind, Temperature"
/>
<meta name="description" content="Weather App" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<!-- Google Fonts -->
<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=Exo:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="css/style.css" />
<title>Climostate — Your weather partner</title>
</head>
<body>
<header class="header">
<a href="#" class="menu" aria-label="menu-btn"
><i class="fas fa-bars"></i
></a>
<a href="#" class="menu close" aria-label="close-btn"
><i class="fas fa-times"></i
></a>
<nav class="main-nav">
<a href="#home" aria-label="website logo"
><img src="assets/img/Logo/Group 4.svg" class="logo" alt="logo"
/></a>
<ul class="nav-list">
<li class="nav-item">
<a href="#home" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="#features" class="nav-link">Features</a>
</li>
<li class="nav-item">
<a href="#testimonials" class="nav-link">Testimonials</a>
</li>
<li class="nav-item">
<a href="#explore" class="nav-link">Explore</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
</nav>
</header>
<div class="container">
<main>
<div class="hero" id="home">
<div class="hero-text">
<h1>VASTLY DIFFERENT</h1>
<p>
Listening through the clouds, Climostate allows you to know the
weather conditions in a specific area.
</p>
<input id="input" type="text" placeholder="Search Country" />
<a id="btn" href="#">Get Started!</a>
</div>
<div class="hero-images">
<img
src="assets/img/Landing/Hero/hero-1.webp"
class="hero-img"
alt="hero-img"
/>
<img
src="assets/img/Landing/Hero/hero-2.webp"
class="hero-img2"
alt="hero-img2"
/>
</div>
</div>
<!--features section -->
<section class="features" id="features">
<div class="section-br features-br">
<img
src="assets/img/Other/Group 20.png"
class="break-logo"
alt="Break"
/>
<h1 class="explore-text">FEATURES</h1>
</div>
<div class="features-icons">
<div class="features-icon">
<img
src="./assets/img/Landing/Features/Personal-Service.svg"
alt="Personalized Service"
/>
<h3>PERSONALIZED-<br />SERVICE</h3>
<p>
One-to-one service<br />
designed to fit your needs<br />
and preferences.
</p>
</div>
<div class="features-icon">
<img
src="./assets/img/Landing/Features/search.svg"
alt="Easy Search"
/>
<h3>SEARCH</h3>
<p id="features-search-p">
Easy-to-use tools to keep<br />
trip details at your fingertips<br />
and simplify your travel.
</p>
</div>
<div class="features-icon features-icon-responsive">
<img
src="./assets/img/Landing/Features/Technology.svg"
alt="Technology Driven"
/>
<h3>TECHNOLOGY-<br />DRIVEN</h3>
<p>
We provide preferred rates,<br />
upgrades, and experiences<br />
you won't find online.
</p>
</div>
</div>
</section>
<!--Testimonials section -->
<section class="Testimonials" id="testimonials">
<div class="section-br">
<img
src="assets/img/Other/Group 20.png"
class="break-logo"
alt="break"
/>
<h1 class="explore-text">TESTIMONIALS</h1>
</div>
<img
src="./assets/img/Landing/Testimonials/Vector.png"
class="Testimonials-avater"
alt="Background image"
/>
<div class="left-testimonials-sections">
<div class="testimonial-container">
<div class="testimonial">
<img
src="./assets/img/Landing/Testimonials/testimonial-1.png"
alt="Group of happy people"
/>
<p>
<i class="fas fa-quote-left fa-2x"></i> We were was amazed at
how accurate and complete Climostate Weather was during our
bike ride in Spain. I became the weather man for our bike
riding friends. <sup><i class="fas fa-quote-right"></i></sup>
</p>
</div>
</div>
</div>
<div class="right-testimonials-sections">
<div class="testimonial-container">
<div class="testimonial">
<p>
<i class="fas fa-quote-left fa-2x"></i> With Climostate
Weather we get perfect information about the weather along the
race routes. It provides very accurate forecasts for
temperature, wind and precipitation for every point of the
route with just a single click. Detailed forecasts from Epic
Ride Weather have become essential in planning our race
tactics and strategy, especially in cases where wind direction
and intensity are likely to influence the outcome.<sup
><i class="fas fa-quote-right"></i
></sup>
</p>
<img
src="./assets/img/Landing/Testimonials/testimonial-2.png"
alt="Happy woman"
/>
</div>
</div>
</div>
</section>
<div class="section-br">
<img
src="assets/img/Other/Group 20.png"
class="break-logo"
alt="break"
/>
<h1 class="explore-text">EXPLORE NOW</h1>
</div>
<div class="slider" id="explore">
<div class="slide current">
<div class="content">
<h1>Egypt</h1>
<p>
Was the home of one of the principal civilizations of the
ancient Middle East and, like Mesopotamia farther east, was the
site of one of the world’s earliest urban and literate
societies.
</p>
</div>
</div>
<div class="slide" id="explore">
<div class="content">
<h1>United States of America</h1>
<p>
The United States of America is the world's foremost economic
and military power, with global interests and an unmatched
global reach.
</p>
</div>
</div>
<div class="slide">
<div class="content">
<h1>France</h1>
<p>
a World leader throughout history in nearly all aspects of
culture, including cuisine, wine-making, politics, philosophy,
music, art, film, fashion, literature, and sports.
</p>
</div>
</div>
<div class="slide">
<div class="content">
<h1>Japan</h1>
<p>
Japan is a fascinating country of economic and business prowess,
rich culture, technical wizardry, spatial conundrums and
contradictions. Japan held onto the title of the world’s second
largest economy for more than 40 years.
</p>
</div>
</div>
<div class="slide">
<div class="content">
<h1>India</h1>
<p>
Is known for many, many different aspects – its food, culture,
its massive population, its natural landscapes, its languages,
classical dances, Bollywood or the Hindi film industry.
</p>
</div>
</div>
<div class="slide">
<div class="content">
<h1>United Kingdom</h1>
<p>
state made up of the historic countries of England, Wales and
Scotland, as well as Northern Ireland. It is known as the home
of both modern parliamentary democracy and the Industrial
Revolution.
</p>
</div>
</div>
<div class="slide">
<div class="content">
<h1>Mexico</h1>
<p>
Mexico is known for its food and drink culture, like; tacos,
tortillas, burritos, tequila and for being the origin of
chocolate. Mexico is also famous for Mayan temples, cenotes,
mariachi bands, beach destinations like Cancun, the ‘day of the
dead’ festival, and unfortunately, drug cartels.
</p>
</div>
</div>
<div class="buttons">
<button id="prev" aria-label="Previous">
<i class="fas fa-arrow-left"></i>
</button>
<button id="next" aria-label="Next">
<i class="fas fa-arrow-right"></i>
</button>
</div>
</div>
</main>
</div>
<!--footer-->
<footer id="contact">
<div class="footer-grid">
<div class="footeer-section">
<a class="active" href="#home">Home</a>
<a class="active" href="#explore">Gallery</a>
<a class="active" href="#contact">About us</a>
<a class="active" href="#contact">Contact us</a>
<div class="climostate-tittle">
<img src="./assets/img/Other/Group 20.png" alt="colored logo" />
<p>CLIMOSTATE</p>
</div>
<span> © 2021 Climostate Inc. All rights <br />reserved.</span>
</div>
<div class="footeer-section">
<p>
CALL US <br />
<span>+97 (059) 999 9999</span>
</p>
<p>
E-MAIL US<br />
<span>[email protected]</span>
</p>
</div>
<div class="footeer-section">
<form>
<button name="follow" class="follow-button">
<span>Follow us</span>
<i class="fab fa-twitter fa-2x"></i>
</button>
<div class="footer-media">
<a href="#" aria-label="linkedin"
><i class="fab fa-linkedin"></i
></a>
<a href="#" aria-label="facebook"
><i class="fab fa-facebook-f"></i
></a>
<a href="#" aria-label="instagram"
><i class="fab fa-instagram"></i
></a>
</div>
</form>
</div>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>