-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
664 lines (563 loc) · 22.8 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
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
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;1,400;1,600&display=swap" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha256-eZrrJcwDc/3uDhsdt61sL2oOBY362qM3lon1gyExkL0=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" />
<title></title>
</head>
<body>
<div class="header" id="top-header">
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container text-uppercase p-2">
<a class="navbar-brand font-weight-bold text-white" href="index.html">FreelancingHub.com</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto text-uppercase">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#servicediv">Service</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#pricingdiv">Prices</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#happy-clients">Satisfied Customers</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#newsletterid">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contactid">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="header-section">
<div class="center-div">
<h1 class="font-weight-bold">We Are The Developers</h1>
<p>
We Create The World's Best Websites
</p>
<div class="header-buttons">
<a href="#newsletterid">AboutUs</a>
<a href="#contactid">Contact</a>
</div>
</div>
</section>
</div>
<!-- *************** Header Part Ends ************* -->
<!-- ************** Three Extra Header Div Starts ************* -->
<section class="header-extradiv">
<div class="container">
<div class="row">
<div class="extra-div col-lg-4 col-md-4 col-12">
<a href=""><i class="fa-3x fa fa-desktop" aria-hidden="true"></i></a>
<h2>EASY TO USE</h2>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Suscipit
aut soluta a repellendus ratione quibusdam fuga quas, eligendi
quos laudantium.
</p>
</div>
<div class="extra-div col-lg-4 col-md-4 col-12">
<a href=""><i class="fa-3x fa fa-trophy" aria-hidden="true"></i></a>
<h2>AWESOME DESIGN</h2>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Suscipit
aut soluta a repellendus ratione quibusdam fuga quas, eligendi
quos laudantium.
</p>
</div>
<div class="extra-div col-lg-4 col-md-4 col-12">
<a href=""><i class="fa-3x fa fa-magic" aria-hidden="true"></i></a>
<h2>EASY TO CUSTOMIZE</h2>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Suscipit
aut soluta a repellendus ratione quibusdam fuga quas, eligendi
quos laudantium.
</p>
</div>
</div>
</div>
</section>
<!-- ************** Three Extra Header Div Ends *************-->
<!-- ************** Offer Section Start *************-->
<section class="serviceoffers" id="servicediv">
<div class="container headings text-center">
<h1 class="text-center font-weight-bold">
WHAT DO WE OFFER
</h1>
<p class="text-center">
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Quasi nisi
sequi dolorum at impedit
</p>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-12 col-10 offset-1 offset-lg-0">
<div class="names my-3">
<h1>HTML</h1>
<div class="progress w-75">
<div class="progress-bar progress-bar-striped progress-bar-animated" style="width: 100%;">
100%
</div>
</div>
</div>
<div class="names my-3">
<h1>CSS</h1>
<div class="progress w-75">
<div class="progress-bar progress-bar-striped progress-bar-animated bg-success" style="width: 90%;">
90%
</div>
</div>
</div>
<div class="names my-3">
<h1>JAVASCRIPT</h1>
<div class="progress w-75">
<div class="progress-bar progress-bar-striped progress-bar-animated bg-warning" style="width: 85%;">
80%
</div>
</div>
</div>
<div class="names my-3">
<h1>REACTJS</h1>
<div class="progress w-75">
<div class="progress-bar progress-bar-striped progress-bar-animated bg-primary" style="width: 75%;">
75%
</div>
</div>
</div>
<div class="names my-3">
<h1>NODEJS</h1>
<div class="progress w-75">
<div class="progress-bar progress-bar-striped progress-bar-animated bg-danger" style="width: 80%;">
80%
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-12 servicediv">
<div class="row">
<div class="col-lg-2 col-2 service-icons">
<i class="fa-2x fa fa-desktop" aria-hidden="true"></i>
</div>
<div class="col-lg-10 col-10">
<h2>Website Development</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic,
distinctio. Obcaecati voluptates doloremque quo corrupti est
error sapiente minus fuga.
</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-2 service-icons">
<i class="fa-2x fa fa-wifi" aria-hidden="true"></i>
</div>
<div class="col-lg-10 col-10">
<h2>Digital Marketing</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic,
distinctio. Obcaecati voluptates doloremque quo corrupti est
error sapiente minus fuga.
</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-2 service-icons">
<i class="fa-2x fa fa-phone" aria-hidden="true"></i>
</div>
<div class="col-lg-10 col-10">
<h2>Support 24/7</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic,
distinctio. Obcaecati voluptates doloremque quo corrupti est
error sapiente minus fuga.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ************** Offer Section Ends *************-->
<!-- ************** Project Done Starts *************-->
<section class="project-work">
<div class="container headings text-center">
<p class="text-center font-weight-bold">
MORE THAN 2000 WEBSITES CREATED
</p>
</div>
<div class="container d-flex justify-content-around align-items-center text-center">
<div>
<h1 class="count">
1500
</h1>
<p>
CMS Installation
</p>
</div>
<div>
<h1 class="count">
2500
</h1>
<p>
Awards Won
</p>
</div>
<div>
<h1 class="count">
700
</h1>
<p>
Happy Clients
</p>
</div>
<div>
<h1 class="count">
500
</h1>
<p>
Working On
</p>
</div>
</div>
</section>
<!-- ************** Project Done Ends *************-->
<!-- ************** Our Pricing Starts *************-->
<section class="pricing" id="pricingdiv">
<div class="container headings text-center">
<h1 class="text-center font-weight-bold text-white">
OUR BEST PRICING
</h1>
</div>
<div class="container">
<div class="row">
<div class="col-lg-4 col-12 card-first">
<div class="card text-center">
<div class="card-header">BASIC</div>
<div class="card-body">
<li>$<span class="money">20</span>/Website</li>
<li>Responsive Websites</li>
<li>Domain Name Free</li>
<li>Mobile Friendly</li>
<li>Webmail Support</li>
<li>Customer Support 24/7</li>
</div>
<div class="card-footer">
<a href="#">Purchase</a>
</div>
</div>
</div>
<div class="col-lg-4 col-12 card-second">
<div class="card text-center">
<div class="card-header">STANDARD</div>
<div class="card-body">
<li>$<span class="money">40</span>/Website</li>
<li>Responsive Websites</li>
<li>Domain Name Free</li>
<li>Mobile Friendly</li>
<li>Webmail Support</li>
<li>Customer Support 24/7</li>
</div>
<div class="card-footer">
<a href="#">Purchase</a>
</div>
</div>
</div>
<div class="col-lg-4 col-12 card-third">
<div class="card text-center">
<div class="card-header">PREMIUM</div>
<div class="card-body">
<li>$<span class="money">60</span>/Website</li>
<li>Responsive Websites</li>
<li>Domain Name Free</li>
<li>Mobile Friendly</li>
<li>Webmail Support</li>
<li>Customer Support 24/7</li>
</div>
<div class="card-footer">
<a href="#">Purchase</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ************** Our Pricing Ends *************-->
<!-- ************** Our Customers Feedback Starts *************-->
<section class="happyclients" id="happy-clients">
<div class="container headings text-center">
<h1 class="text-center font-weight-bold">
OUR HAPPY CLIENTS
</h1>
<p class="text-capitalize pt-1">Our Satisfied Customer Says</p>
</div>
<div id="demo" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner container">
<div class="carousel-item active">
<div class="row">
<div class="col-lg-4 col-md-4 col-12">
<div class="box">
<a href="#demo"><img src="images/iphone-dark-notebook-pen-34140.jpg" class="img-fluid img-thumbnail"></a>
<p class="m-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deleniti illum perspiciatis
repudiandae impedit in nisi beatae veritatis ab ullam nihil?</p>
<h1>Debargha Saha</h1>
<h2>Web And App Developer</h2>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="box">
<a href="#demo"><img src="images/iphone-dark-notebook-pen-34140.jpg" class="img-fluid img-thumbnail"></a>
<p class="m-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deleniti illum perspiciatis
repudiandae impedit in nisi beatae veritatis ab ullam nihil?</p>
<h1>Debargha Saha</h1>
<h2>Web And App Developer</h2>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="box">
<a href="#demo"><img src="images/iphone-dark-notebook-pen-34140.jpg" class="img-fluid img-thumbnail"></a>
<p class="m-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deleniti illum perspiciatis
repudiandae impedit in nisi beatae veritatis ab ullam nihil?</p>
<h1>Debargha Saha</h1>
<h2>Web And App Developer</h2>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class="col-lg-4 col-md-4 col-12">
<div class="box">
<a href="#demo"><img src="images/iphone-dark-notebook-pen-34140.jpg" class="img-fluid img-thumbnail"></a>
<p class="m-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deleniti illum perspiciatis
repudiandae impedit in nisi beatae veritatis ab ullam nihil?</p>
<h1>Debargha Saha</h1>
<h2>Web And App Developer</h2>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="box">
<a href="#demo"><img src="images/iphone-dark-notebook-pen-34140.jpg" class="img-fluid img-thumbnail"></a>
<p class="m-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deleniti illum perspiciatis
repudiandae impedit in nisi beatae veritatis ab ullam nihil?</p>
<h1>Debargha Saha</h1>
<h2>Web And App Developer</h2>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="box">
<a href="#demo"><img src="images/iphone-dark-notebook-pen-34140.jpg" class="img-fluid img-thumbnail"></a>
<p class="m-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deleniti illum perspiciatis
repudiandae impedit in nisi beatae veritatis ab ullam nihil?</p>
<h1>Debargha Saha</h1>
<h2>Web And App Developer</h2>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class="col-lg-4 col-md-4 col-12">
<div class="box">
<a href="#demo"><img src="images/iphone-dark-notebook-pen-34140.jpg" class="img-fluid img-thumbnail"></a>
<p class="m-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deleniti illum perspiciatis
repudiandae impedit in nisi beatae veritatis ab ullam nihil?</p>
<h1>Debargha Saha</h1>
<h2>Web And App Developer</h2>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="box">
<a href="#demo"><img src="images/iphone-dark-notebook-pen-34140.jpg" class="img-fluid img-thumbnail"></a>
<p class="m-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deleniti illum perspiciatis
repudiandae impedit in nisi beatae veritatis ab ullam nihil?</p>
<h1>Debargha Saha</h1>
<h2>Web And App Developer</h2>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="box">
<a href="#demo"><img src="images/iphone-dark-notebook-pen-34140.jpg" class="img-fluid img-thumbnail"></a>
<p class="m-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deleniti illum perspiciatis
repudiandae impedit in nisi beatae veritatis ab ullam nihil?</p>
<h1>Debargha Saha</h1>
<h2>Web And App Developer</h2>
</div>
</div>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</section>
<!-- ************** Our Customers Feedback Ends *************-->
<!-- ************** Contact Us Starts *************-->
<section class="contactus" id="contactid">
<div class="container headings text-center">
<h1 class="text-center font-weight-bold">
CONTACT US
</h1>
<p class="text-capitalize pt-1">We're Here To Help And Answer Any Question You Might Have. We're Looking Forward
To Hearing From You!!</p>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-8 col-10 offset-lg-2 offset-md-2 offset-1">
<form action="/action_page.php">
<div class="form-group">
<input type="text" class="form-control" placeholder="Enter Your Name" id="username" required
autocomplete="off">
</div>
<form action="/action_page.php">
<div class="form-group">
<input type="email" class="form-control" placeholder="Enter Email" id="email" required
autocomplete="off">
</div>
<form action="/action_page.php">
<div class="form-group">
<input type="text" class="form-control" placeholder="Enter Mobile Number" id="mobile" required
autocomplete="off">
</div>
<div class="form-group">
<textarea class="form-control" rows="5" id="comment" placeholder="Enter Message"></textarea>
</div>
<div class="d-flex justify-content-center form-button">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- ************** Contact Us Ends *************-->
<!-- ************** NewsLetter Starts *************-->
<section class="newsletter" id="newsletterid">
<div class="container headings text-center">
<h1 class="text-center font-weight-bold">
CONTACT US
</h1>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 offset-lg-2 col-12">
<div class="input-group mb-3">
<input type="text" class="form-control news-input" placeholder="Your Email">
<div class="input-group-append">
<span class="input-group-text">Subscribe</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ************** NewsLetter Ends *************-->
<!-- ************** Footer Starts *************-->
<footer class="footersection" id="footerdiv">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 col-12 footer-div">
<div>
<h3>ABOUT FREELANCINGHUB.COM</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos soluta aliquam odio incidunt molestiae,
similique aut deleniti eum vitae itaque non, at voluptates, nostrum exercitationem quibusdam quas.
Voluptates, rerum illo.</p>
</div>
</div>
<div class="col-lg-4 col-md-12 col-12 footer-div text-center">
<div>
<h3>NAVIGATION LINKS</h3>
<li><a href="#">Home</a></li>
<li><a href="#servicediv">Services</a></li>
<li><a href="#pricingdiv">Price</a></li>
<li><a href="#happy-clients">Satisfied Customers</a></li>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12 footer-div">
<div>
<h3>NEWSLETTER</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Rerum debitis harum sint, itaque ratione animi
facere corporis commodi neque cupiditate?</p>
<div class="container newsletter-main">
<div class="row">
<div class="col-lg-12 col-12">
<div class="input-group mb-3">
<input type="text" class="form-control news-input" placeholder="Your Email">
<div class="input-group-append">
<span class="input-group-text">Subscribe</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-5 text-center">
<p>
Copyright ©2020 All Rights Reserved | This Template is made by Debargha Saha ®
</p>
</div>
<div class="scrolltop float-right">
<i class="fa fa-arrow-up" onclick="topFunction()" id="myBtn"></i>
</div>
</div>
</footer>
<!-- ************** Footer Ends *************-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"
integrity="sha256-jDnOKIOq2KNsQZTcBTEnsp76FnfMEttF6AV2DF2fFNE=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Counter-Up/1.0.0/jquery.counterup.min.js"
integrity="sha256-JtQPj/3xub8oapVMaIijPNoM0DHoAtgh/gwFYuN5rik=" crossorigin="anonymous"></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.5.0/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(".count").counterUp({
delay: 10,
time: 1000,
});
//Get The Button
mybutton = document.getElementById("myBtn");
//When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction(){
if(document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else{
mybutton.style.display = "none";
}
}
//When the user clicks on the button, scroll to the top of the element
function topFunction(){
document.body.scrollTop = 0; //Safari
document.documentElement.scrollTop = 0; // For Chrome, IE, FireFox and Opera
}
</script>
</body>
</html>