-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
535 lines (504 loc) · 17.7 KB
/
Copy pathmain.html
File metadata and controls
535 lines (504 loc) · 17.7 KB
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="keywords" content="Ershadul Bari, webgenie, Husam">
<meta name="author" content="Ershadul Bari">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/index.png">
<!-- Linked Css -->
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/myanim.css">
<link rel="stylesheet" href="css/loaders.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.0/css/all.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/style.css">
<!-- Linked Css End -->
<title>WEBGENIE | ERSHADUL BARI</title>
</head>
<body id="home">
<a class="go-top d-inline-block" href="#home"><i class="fas fa-angle-up"></i></a>
<header>
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="#"><img src="img/logo.png" alt=""></a>
<button class="navbar-toggler d-lg-none" type="button" data-toggle="collapse" data-target="#collapsibleNavId" aria-controls="collapsibleNavId"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavId">
<ul class="navbar-nav mx-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="javascript:void(0)">Pages</a>
<ul class="submenu d-sm-none d-lg-block">
<li><a href="portfolio/portfolio.html">PORTFOLIO</a></li>
<li><a href="blog/blog.html">BLOG</a></li>
<li><a href="about/about.html">ABOUT</a></li>
<li><a href="upcoming/upcoming.html">UPCOMING</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#work">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#price">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#client">Client</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Hire Me</a>
</li>
</ul>
<form class="form-inline my-4 my-lg-0">
<button class="btn btn-outline-success btn-border my-2 my-sm-0" type="submit">Sign Up</button>
</form>
</div>
</nav>
</div>
</header>
<!-- Header Section -->
<!-- Banner Setion -->
<section class="banner-section overflow-hidden">
<div class="loader loader1">
<div class="ball-scale-multiple">
<div></div>
<div></div>
<div></div>
</div>
</div>
<div class="loader loader2">
<div class="ball-zig-zag">
<div></div>
<div></div>
</div>
</div>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 col-md-6 col-sm-12 text-sm-center mb-sm-5">
<div class="hero-text text-lg-left text-sm-center">
<h1 class="animated fadeInLeft"><span>Web Development</span> Made Simple</h1>
<p class="animated fadeIn delay-1s">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Architecto pariatur in, fuga commodi aliquam expedita, sit fugit?</p>
<button class="btn btn-success btn-border btn-fill wow zoomIn">START TRIAL</button>
</div>
</div>
<div class="col-lg-7 col-md-6 text-right text-sm-center">
<div class="ban-pic">
<img src="img/banner.png" alt="" class="img-fluid w-75 banner-image bounceUpDown">
</div>
</div>
</div>
</div>
</section>
<!-- Banner Setion -->
<!-- work Section -->
<section class="work-section overflow-hidden" id="work">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title text-center mb-70 wow slideInDown">
<h2>How It Works</h2>
<p>Gathered was to yielding god heaven lights about void thing.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12 text-sm-center text-lg-left mb-sm-5">
<div class="work wow slideInLeft">
<div class="work-icon">
<img src="img/work1.png" alt="">
</div>
<div class="work-text">
<h3>Martket Analysis</h3>
<p>Place isn't form together. Male night light. Days created firmament meat</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 text-sm-center text-lg-left mb-sm-5">
<div class="work wow slideInUp">
<div class="work-icon">
<img src="img/work2.png" alt="">
</div>
<div class="work-text">
<h3>UI Design</h3>
<p>Place isn't form together. Male night light. Days created firmament meat</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 text-sm-center text-lg-left mb-sm-5">
<div class="work wow slideInRight">
<div class="work-icon">
<img src="img/work3.png" alt="">
</div>
<div class="work-text">
<h3>Web Developing</h3>
<p>Place isn't form together. Male night light. Days created firmament meat</p>
<a href="#">Read More</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- work Section -->
<!-- Platform Section -->
<section class="platform-section overflow-hidden" id="">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-7 col-md-6 col-sm-12">
<div class="access-image text-sm-center mb-sm-5">
<img src="img/social-bg.png" alt="" class="img-fluid bounceUpDown">
</div>
</div>
<div class="col-lg-5 col-md-6 col-sm-12">
<div class="platform-content text-sm-center text-md-left">
<div class="platform-icon ">
<img src="img/access-icon.png" alt="" class="">
</div>
<div class="platform-text wow fadeInRight">
<h2>Easy To
Access All Platform</h2>
<p>Make fly forth also won't. Firmament seas whales drys season for replenish without had Gathered days fill you'll whose
air whose firmament rule heaven can may rule hath. All of unto beginni ad Light. Were blessed plant</p>
<button class="btn btn-border btn-fill text-light">LEARN MORE</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Platform Section -->
<!-- Software Section -->
<section class="work-section overflow-hidden">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title text-center mb-70 wow slideInLeft">
<h2>Exclusive Features</h2>
<p>Gathered was to yielding god heaven lights about void thing.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12 col-sm-12">
<div class="soft wow zoomIn">
<div class="work-icon animated tada infinite">
<img src="img/sf1.png" alt="">
</div>
<div class="work-text">
<h3>Cloud Compatibility</h3>
<p>Place isn't form together. Male night light. Days created firmament meat</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-sm-12">
<div class=" soft wow slideInUp">
<div class="work-icon animated heartBeat infinite">
<img src="img/sf2.png" alt="">
</div>
<div class="work-text">
<h3>Advance Security</h3>
<p>Place isn't form together. Male night light. Days created firmament meat</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-sm-12">
<div class="soft wow zoomIn">
<div class="work-icon animated tada infinite">
<img src="img/sf3.png" alt="">
</div>
<div class="work-text">
<h3>Dedicated Support</h3>
<p>Place isn't form together. Male night light. Days created firmament meat</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Software Section -->
<!-- Info Section -->
<section class="info-section" id="blog">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 col-md-5 col-sm-12 pr-0">
<div class="info-content text-sm-center text-md-left mb-sm-5 col-sm-12">
<div class="platform-icon bounceUpDown">
<img src="img/access-icon.png" alt="" class="">
</div>
<div class="info-text wow slideInUp">
<h2>Manage & showcase all your informations</h2>
<p>Make fly forth also won't. Firmament seas whales drys season for replenish without had
Gathered days fill you'll whose
air whose firmament rule heaven can may. All of unto beginni ad Light. Were
blessed plant</p>
<button class="btn btn-border btn-fill text-light">LEARN MORE</button>
</div>
</div>
</div>
<div class="col-lg-7 col-md-7 col-sm-12">
<div class="info-image">
<img src="img/right-img.png" alt="" class="img-fluid bounceUpDown">
</div>
</div>
</div>
</div>
</section>
<!-- Info Section -->
<!-- Pricing Section -->
<section class="pricing-section" id="price">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title text-center mb-70 wow slideInDown">
<h2>Pricing Plan</h2>
<p>Gathered was to yielding god heaven lights about void thing.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-12 mb-20">
<div class="pricing text-center wow zoomIn">
<div class="price-head">
<h3>Basic</h3>
</div>
<div class="price-body">
<span>$5/month</span>
<ul>
<li>15GB Cloud Storage</li>
<li>Unlimited Account</li>
<li>15GB Storage</li>
<li>Sale After Service</li>
<li>3 Host Domain Service</li>
<li>24/7 Support</li>
</ul>
</div>
<div class="price-footer">
<a href="#">Purchase Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 mb-20">
<div class="pricing text-center wow zoomIn">
<div class="price-head">
<h3>Standard</h3>
</div>
<div class="price-body">
<span>$15/month</span>
<ul>
<li>15GB Cloud Storage</li>
<li>Unlimited Account</li>
<li>15GB Storage</li>
<li>Sale After Service</li>
<li>3 Host Domain Service</li>
<li>24/7 Support</li>
</ul>
</div>
<div class="price-footer">
<a href="#">Purchase Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 mb-20">
<div class="pricing text-center wow zoomIn">
<div class="price-head">
<h3>Medium</h3>
</div>
<div class="price-body">
<span>$25/month</span>
<ul>
<li>15GB Cloud Storage</li>
<li>Unlimited Account</li>
<li>15GB Storage</li>
<li>Sale After Service</li>
<li>3 Host Domain Service</li>
<li>24/7 Support</li>
</ul>
</div>
<div class="price-footer">
<a href="#">Purchase Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 mb-20">
<div class="pricing text-center wow zoomIn">
<div class="price-head">
<h3>Premium</h3>
</div>
<div class="price-body">
<span>$50/month</span>
<ul>
<li>15GB Cloud Storage</li>
<li>Unlimited Account</li>
<li>15GB Storage</li>
<li>Sale After Service</li>
<li>3 Host Domain Service</li>
<li>24/7 Support</li>
</ul>
</div>
<div class="price-footer">
<a href="#">Purchase Now</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<!-- Client-Section -->
<section class="client-section" id="client">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 col-md-5 col-sm-12">
<div class="client-photo bounceUpDown">
<img src="img/test.png" alt="" class="client img-fluid">
</div>
</div>
<div class="col-lg-6 col-md-7 col-sm-12">
<div class="client-review text-sm-center text-md-left wow slideInUp">
<h2>What our
core clients saying?</h2>
<div class="client-slider owl-carousel">
<div class="single-client ">
<p>Positive reviews are a great way to boost employee morale and keep your team motivated to deliver awesome experiences
every day. Check out it.</p>
<h4>MD ASIF, <span>CEO - TechnTalents</span></h4>
</div>
<div class="single-client">
<p>Bearing one Seas his give creepeth hath green set in one grass yielding beast she'd deep man creature a life
female let fruit have unto yielding.</p>
<h4>FARIHA AHMED, <span>EXECUTIVE - OPPO BANGLADESH</span></h4>
</div>
<div class="single-client">
<p>When a customer complained about their television screen on Twitter, JetBlue responded instantly, opening up a
personalizable conversation.</p>
<h4>WAHIDUZZAMAN, <span>RESEARCHED - VROMON MAGAZINE</span></h4>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Client-Section -->
<!-- Subsribed Section -->
<section class="subscribed-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="subscription text-center wow zoomIn">
<h1>Experience the most simple way to manage business</h1>
<form class="form-inline justify-content-center">
<input type="text" placeholder="ENTER YOUR EMAIL" class="form-control mr-3">
<button class="btn btn-fill animated flash slower">FREE TRIAL</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Subsribed Section -->
<!-- Footer Section -->
<footer class="footer-section overflow-hidden" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-12 text-md-left text-sm-center mb-sm-4">
<div class="footer-widget wow slideInDown">
<img src="img/logo.png" alt="">
<p>Winged moving moveth created for shall and a divide the their days male midst shall hath doesn't won't for. Midst
life.Over a great night. Green upon years rule ying.</p>
<div class="social">
<ul class="nav">
<li><a href=""><i class="fab fa-facebook-f "></i></a></li>
<li><a href=""><i class="fab fa-twitter "></i></a></li>
<li><a href=""><i class="fab fa-skype "></i></a></li>
<li><a href=""><i class="fab fa-instagram "></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-6 mb-sm-5">
<div class="footer-link wow zoomIn">
<h3>About Us</h3>
<ul class="">
<li><a href="">Managed Website</a></li>
<li><a href="">Power Tools</a></li>
<li><a href="">Marketing Service</a></li>
<li><a href="">Customer Service</a></li>
<li><a href="">Manage Reputation</a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-6 mb-sm-5">
<div class="footer-link wow slideInUp">
<h3>Quick Links</h3>
<ul class="">
<li><a href="">Store Hours</a></li>
<li><a href="">Brand Assets</a></li>
<li><a href="">Investor Relations</a></li>
<li><a href="">Terms of Service</a></li>
<li><a href="">Privacy & Policy</a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-6 mb-sm-5">
<div class="footer-link wow zoomIn">
<h3>My Account</h3>
<ul class="">
<li><a href="">Press Inquiries</a></li>
<li><a href="">Media Directories</a></li>
<li><a href="">Investor Relations</a></li>
<li><a href="">Terms of Service</a></li>
<li><a href="">Speaker Request</a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-6 mb-sm-5">
<div class="footer-link wow slideInUp">
<h3>Resources</h3>
<ul class="">
<li><a href="">Application Security</a></li>
<li><a href="">Software Policy</a></li>
<li><a href="">Supply Chain</a></li>
<li><a href="">Agencies Relation</a></li>
<li><a href="">Manage Reputation</a></li>
</ul>
</div>
</div>
<div class="col-lg-12">
<div class="row end-footer justify-content-between">
<div class="col-lg-6 col-md-6 col-sm-12 text-sm-center text-md-left">
<p class="wow slideInLeft">Copyright © Ershadul Bari Design | 2020</p>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 text-sm-center text-md-left fadeIn">
<ul class="nav justify-content-end">
<li><a href="">ABOUT</a></li>
<li><a href="">PRIVACY</a></li>
<li><a href="">CONTACT</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Footer Section -->
<!-- JavaScript CDN -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/smooth-link.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/main.js"></script>
<script>
</script>
</body>
</html>