-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
453 lines (453 loc) · 21.5 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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title -->
<title>Made By Siam Ahnaf</title>
<!-- Favicon -->
<link rel="shortcut icon" href="img/fevicon.ico" type="image/x-icon">
<!-- Dependencies - Fontawesome, animate.css, bootstrap, hi-slider -->
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/hi-slide.css">
<!-- Fonts - Ubuntu -->
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700&display=swap" rel="stylesheet">
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css">
<!-- Responsive -->
<link rel="stylesheet" href="css/responsive.css">
</head>
<body onload="screenLoading()">
<!-- Header -->
<header>
<div class="container">
<nav>
<!-- Mobile bar Icons -->
<div class="mobile_bar">
<div class="mobile_bar_icon">
<i class="fas fa-bars"></i>
</div>
</div>
<!-- Logo Area -->
<div class="logo_area">
<a class="common_logo" href="index.html"><img src="img/logo.png" alt="Logo"></a>
<a class="sticy_logo" href="index.html"><img src="img/footer-logo.png" alt="Logo"></a>
</div>
<!-- Navlinks -->
<div class="nav_links">
<ul id="practice_nav">
<!-- Listitem -->
<li class="active"><a href="#home">home</a></li>
<li><a href="#features">features</a></li>
<li><a href="#screenshot">screenshot</a></li>
<li><a href="#reviews">reviews</a></li>
<li><a href="#download_sec">download</a></li>
</ul>
</div>
<!-- Nav Social -->
<div class="nav_social">
<ul>
<!-- ListItem -->
<li><a href="www.facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a></li>
<li><a href="www.google.com" target="_blank"><i class="fab fa-google-plus-g"></i></a></li>
</ul>
</div>
</nav>
</div>
</header>
<!-- Home Section -->
<section id="home" class="home_section">
<div class="container">
<div class="row">
<!-- Hero left side -->
<div class="col-md-5">
<div class="home_body_content">
<h2 class="wow fadeInLeft">get the most fun <br> weather app</h2>
<p class="wow fadeInRight">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime rem modi sed at necessitatibus possimus delectus, odio placeat iste harum facilis sunt porro atque quae sequi, reiciendis temporibus debitis doloremque.
</p>
<!-- Download btn -->
<div class="red_btn wow fadeInDown" data-wow-delay="0.2s">
<a href="">download</a>
</div>
<!-- Features btn -->
<div class="blue_btn wow fadeInDown" data-wow-delay="0.2s">
<a href="">features</a>
</div>
</div>
</div>
<!-- Hero right side -->
<div class="col-md-4 offset-md-2">
<div class="header_body_img wow fadeInRightBig">
<img src="img/phone01.png" alt="Phone">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<!-- Down Button -->
<div class="home_down_bnt">
<a href="#features"><i class="fas fa-chevron-down"></i></a>
</div>
</div>
</div>
</div>
<!-- Home Absolute -->
<div class="home_absolute">
<div class="hdeg wow zoomIn" data-wow-delay="0.5s">9°</div>
<div class="sunny wow zoomIn" data-wow-delay="0.5s">sunny</div>
<div class="london wow zoomIn" data-wow-delay="0.5s">london</div>
<div class="rio wow zoomIn" data-wow-delay="0.5s">rio</div>
</div>
</section>
<!-- Features -->
<section id="features" class="features_section">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Features Header -->
<div class="features_heading wow zoomIn">
<h2>perfect features</h2>
<p>only necessary</p>
</div>
</div>
</div>
<!-- Features Container -->
<div class="row">
<!-- Single Features -->
<div class="col-md-4">
<div class="single_features wow fadeInLeftBig" data-wow-delay="0.4s">
<!-- Single Features Icon -->
<div class="features_icon">
<i class="far fa-gem"></i>
</div>
<!-- Single Features Content -->
<div class="features_content">
<h4>usability</h4>
<p>Sometimes the simplest things are the hardest to find. So we created a new line for everyday life</p>
</div>
</div>
</div>
<!-- Single Features -->
<div class="col-md-4">
<div class="single_features wow zoomInUp">
<!-- Single Features Icon -->
<div class="features_icon">
<i class="fas fa-layer-group"></i>
</div>
<!-- Single Features Content -->
<div class="features_content">
<h4>Parallax Effect</h4>
<p>Sometimes the simplest things are the hardest to find. So we created a new line for everyday life</p>
</div>
</div>
</div>
<!-- Single Features -->
<div class="col-md-4">
<div class="single_features wow fadeInRightBig" data-wow-delay="0.4s">
<!-- Single Features Icon -->
<div class="features_icon">
<i class="fas fa-business-time"></i>
</div>
<!-- Single Features Content -->
<div class="features_content">
<h4>Unlimites Colors</h4>
<p>Sometimes the simplest things are the hardest to find. So we created a new line for everyday life</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Loading Main -->
<div id="loading_main">
<div id="loading-screen">
<div class="loading_absolute">
<!-- Loading Object -->
<div class="object" id="object_one"></div>
<div class="object" id="object_two"></div>
<div class="object" id="object_three"></div>
<div class="object" id="object_four"></div>
</div>
</div>
</div>
<!-- Slide Section -->
<section class="slide_sction">
<div class="conatiner">
<div class="row">
<div class="col-md-12">
<!-- Slide Section Header -->
<div class="slide_heading wow fadeInLeftBig">
<h2>simple widgets</h2>
<p>drag and drop</p>
</div>
</div>
</div>
<!-- Section Container -->
<div class="row">
<div class="col-md-12">
<div class="testi_slider hi-slide wow zoomIn" data-wow-delay="0.5s">
<!-- Slide Section Icon -->
<div class="hi-prev testi_prev"><i class="fas fa-chevron-left"></i></div>
<div class="hi-next testi_next"><i class="fas fa-chevron-right"></i></div>
<!-- Slider -->
<ul>
<li><img src="img/drag1.png" alt="drag"></li>
<li><img src="img/drag2.png" alt="drag"></li>
<li><img src="img/drag3.png" alt="drag"></li>
<li><img src="img/drag1.png" alt="drag"></li>
<li><img src="img/drag2.png" alt="drag"></li>
<li><img src="img/drag3.png" alt="drag"></li>
<li><img src="img/drag1.png" alt="drag"></li>
<li><img src="img/drag2.png" alt="drag"></li>
<li><img src="img/drag3.png" alt="drag"></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Screen Shot Section -->
<section id="screenshot" class="screenshot_section">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Screen Shot Section Header -->
<div class="shot_heading wow zoomIn">
<h2>screenshot</h2>
<p>the brightest image</p>
</div>
</div>
</div>
<!-- Screen Container -->
<div class="screen">
<div class="row">
<!-- Single Screen with image-->
<div class="col-md-3 offset-md-1">
<div class="shot_img wow fadeInLeftBig">
<img src="img/screen01.png" alt="screen">
</div>
</div>
<!-- Single Screen with Content-->
<div class="col-md-5 offset-md-2">
<div class="shot_content wow fadeInUpBig">
<!-- Single Screen with image-->
<img src="img/cloud1.png" alt="cloud">
<h3>when the clouds</h3>
<p>Variable information on the air humidity, the feeling of the weather, and the ability to share this with your friends</p>
<div class="shot_special">
95% <span>9°</span> <span>cloudy</span>
</div>
</div>
</div>
<div class="shot_01_15 wow zoomIn" data-wow-delay="0.5s">15°</div>
<div class="shot_01_cloudy wow zoomIn" data-wow-delay="0.5s">cloudy</div>
</div>
</div>
<!-- Screen Container -->
<div class="screen">
<div class="row">
<!-- Single Screen with Content-->
<div class="col-md-5">
<div class="shot_content wow fadeInUpBig">
<!-- Single Screen with image-->
<img src="img/sun1.png" alt="sun">
<h3>when the sun</h3>
<p>Sometimes the simplest things are the hardest to find. So we created a new line for everyday life. Sometimes the simplest things</p>
<div class="shot_special">
95% <span>9°</span> <span>sunny</span>
</div>
</div>
</div>
<!-- Single Screen with Content-->
<div class="col-md-3 offset-md-2">
<div class="shot_img wow fadeInRightBig">
<img src="img/screen02.png" alt="screen">
</div>
</div>
<div class="shot_02_20 wow zoomIn" data-wow-delay="0.5s">25°</div>
<div class="shot_02_sunny wow zoomIn" data-wow-delay="0.5s">sunny</div>
</div>
</div>
<!-- Screen Container -->
<div class="screen">
<div class="row">
<!-- Single Screen with image-->
<div class="col-md-3 offset-md-1">
<div class="shot_img wow fadeInLeftBig">
<!-- Single Screen with image-->
<img src="img/screen03.png" alt="screen">
</div>
</div>
<!-- Single Screen with Content-->
<div class="col-md-5 offset-md-2">
<div class="shot_content wow fadeInUpBig">
<img src="img/rainy1.png" alt="">
<h3>when the rain</h3>
<p>Variable information on the air humidity, the feeling of the weather, and the ability to share this with your friends</p>
<div class="shot_special">
95% <span>9°</span> <span>rainy</span>
</div>
</div>
</div>
<div class="shot_03_9 wow zoomIn" data-wow-delay="0.5s">9°</div>
<div class="shot_03_rainy wow zoomIn" data-wow-delay="0.5s">rainy</div>
</div>
</div>
</div>
</section>
<!-- Reviews Section -->
<section id="reviews" class="reviews_section" id="reviews">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Reviews Section Header -->
<div class="reviews_heading wow fadeInDownBig">
<h2>what people are saying</h2>
<p>reviews</p>
</div>
</div>
</div>
<!-- Reviews Section Container -->
<div class="row">
<!-- Single Reviews -->
<div class="col-md-6">
<div class="single_reviews wow jackInTheBox" data-wow-delay="0.4s">
<div class="review_icon">“</div>
<h3>What art offers is space - a certain breathing room for the spirit. </h3>
<h5>Siam Ahanf</h5>
<div class="review_icon1">“</div>
</div>
</div>
<!-- Single Reviews -->
<div class="col-md-6">
<div class="single_reviews wow jackInTheBox" data-wow-delay="0.6s">
<div class="review_icon">“</div>
<h3>We do not see nature with our eyes, but with our understandings and our hearts. </h3>
<h5>Hasib Ahmed</h5>
<div class="review_icon1">“</div>
</div>
</div>
</div>
<div class="row">
<!-- Single Reviews -->
<div class="col-md-6">
<div class="single_reviews wow jackInTheBox" data-wow-delay="0.4s">
<div class="review_icon">“</div>
<h3>No man has a good enough memory to be a successful liar.</h3>
<h5>Siam Ahanf</h5>
<div class="review_icon1">“</div>
</div>
</div>
<!-- Single Reviews -->
<div class="col-md-6">
<div class="single_reviews wow jackInTheBox" data-wow-delay="0.6s">
<div class="review_icon">“</div>
<h3>The only courage that matters is the kind that gets you from one moment to the next.</h3>
<h5>Hasib Ahmed</h5>
<div class="review_icon1">“</div>
</div>
</div>
</div>
</div>
</section>
<!-- Download Section -->
<section id="download_sec" class="download_section">
<div class="container">
<div class="row">
<div class="col-md-5">
<!-- Download Content -->
<div class="download_content">
<h2 class="wow fadeInDownBig">how download the app?</h2>
<p class="wow fadeInDownBig">Just download the app from the store. Simple, nice and user-friendly application of theweather. Only relevant and useful information.</p>
<!-- Apple Store Btn -->
<div class="istore wow flipInX" data-wow-delay="0.6s">
<img src="img/appstor.png" alt="app store">
</div>
<!-- Google Play Btn -->
<div class="playStore wow flipInX" data-wow-delay="0.6s">
<img src="img/googleplay.png" alt="google play">
</div>
</div>
</div>
<!-- App Download Image-->
<div class="col-md-7">
<div class="down_img wow fadeInRightBig">
<img src="img/appdownload1.png" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="top_footer">
<div class="container">
<div class="footer_nav">
<div class="row">
<!-- Footer one -->
<div class="col-md-2">
<div class="footer_logo wow fadeInLeftBig" data-wow-delay="0.4s">
<!-- Footer Logo -->
<img src="img/footer-logo.png" alt="Logo">
</div>
</div>
<!-- Footer two -->
<div class="col-md-8">
<div class="footer_nav_links wow zoomIn">
<ul>
<!-- Footer nav -->
<li><a href="">home</a></li>
<li><a href="">features</a></li>
<li><a href="">reviews</a></li>
<li><a href="">download</a></li>
</ul>
</div>
</div>
<!-- Footer three -->
<div class="col-md-2">
<div class="footer_social wow fadeInRightBig" data-wow-delay="0.4s">
<ul>
<!-- Footer Social Nav -->
<li><a href=""><i class="fab fa-facebook-f"></i></a></li>
<li><a href=""><i class="fab fa-instagram"></i></a></li>
<li><a href=""><i class="fab fa-google-plus-g"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bottom Footer -->
<div class="bottom_footer">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Copyright -->
<div class="copyright_text wow fadeInRight" data-wow-delay="0.5s">
<p>made with <span><i class="fas fa-heart"></i></span>by <a href="">siam ahnaf</a>2020. all right reserved</p>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Go to btn -->
<div class="go_to_btn">
<a href="#home"><i class="fas fa-chevron-up"></i></a>
</div>
<!-- Scriptjs Dependencies - Jquery, bootstrap, fontawespme, jquery nav, hi slider, wow js -->
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/all.min.js"></script>
<script src="js/jquery.hislide.js"></script>
<script src="js/jquery.nav.js"></script>
<script src="js/wow.min.js"></script>
<!-- Custom Scripts -->
<script src="js/custom.js"></script>
</body>
</html>