-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
511 lines (480 loc) · 24.6 KB
/
index.html
File metadata and controls
511 lines (480 loc) · 24.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hosting- Responsive Landing Page With HTML & CSS</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body>
<!--Preloader-->
<div class="preloader">
<div class="loader"></div>
</div>
<!--End Preloader-->
<!--Hero & Navbar Body-->
<section class="navbar-hero">
<!--Navbar-->
<div class="topnav" id="myTopnav">
<div class="logo-container">
<a href="#logo" class="logo" style="font-size: 1.6rem;">Cloudsnap<span class="colorfull">.</span></a>
</div>
<div class="menu-items">
<a href="#home">Home</a>
<a href="#hosting">Hosting</a>
<a href="#doamin">Domain</a>
<a href="#pricing">Pricing</a>
<a href="#about-us">About-us</a>
<a href="#contact">Contact-us</a>
<a href="#login">Login</a>
<a href="#signup" class="navbar-btn" style="color: #000;">Sign-up</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars" style="color: #fff;"></i>
</a>
</div>
</div>
<!--End Navbar-->
<!--Hero Section-->
<div class="hero">
<div class="hero-container">
<div class="hero-heading">
<h1 class="hero-title">
Hosting That Helps You Grow
</h1>
<p class="hero-description">
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
In, similique! Maiores quisquam, officia similique
explicabo alias commodi dolores, labore voluptatibus.
</p>
<div class="input-container">
<input type="text" placeholder="Search Your Domain">
<button type="button">Search</button>
</div>
</div>
</div>
</div>
<!--End Hero Section-->
</section>
<!--End Hero & Navbar Body-->
<!--hosting plan-->
<section class="hosting">
<div class="hosting-container">
<div class="hosting-item">
<div class="hosting-item-list">
<i class="fa-solid fa-share-from-square hosting-icon"></i>
<span class="hosting-title">
Shared Hosting
</span>
<p class="hosting-description">
Cost Effective & Fast For Small Businesses
</p>
<span class="hosting-price">
Starting At: $2.99/mo
</span>
</div>
<div class="hosting-item-list">
<i class="fa-solid fa-tv hosting-icon"></i>
<span class="hosting-title">
Dedicated Hosting
</span>
<p class="hosting-description">
For The Largest Sites & Custom Deployment
</p>
<span class="hosting-price">
Starting At: $60.8/mo
</span>
</div>
<div class="hosting-item-list">
<i class="fa-solid fa-globe hosting-icon"></i>
<span class="hosting-title">
VPS Hosting
</span>
<p class="hosting-description">
For High Trafic Sites & Larger Businesses
</p>
<span class="hosting-price">
Starting At: $12.9/mo
</span>
</div>
</div>
</section>
<!--end hosting plan-->
<!--choose us section-->
<section class="choose">
<div class="choose-container">
<div class="choose-main-div">
<div class="choose-heading">
<h1 class="choose-title">
Why Choose Our Hosting For Your Hosting Needs?
</h1>
<p class="choose-description">
No Matter Which Services You Choose, You Can Expect The Highest Performance
</p>
<a href="#" class="choose-btn">See Our Hossting Plan</a>
</div>
</div>
<div class="choose-item">
<div class="choose-item-list" style="background-color: rgb(57, 57, 236); color: #fff;">
<i class="fa-solid fa-rotate choose-icon" style="color: #fff;"></i>
<span class="choose-item-title">
Super Easy To Use
</span>
<p class="choose-item-description">
Our custom control panel is simple to use and remove
the headache of managing your web hosting.
</p>
</div>
<div class="choose-item-list">
<i class="fa-solid fa-server choose-icon"></i>
<span class="choose-item-title">
Full Featured
</span>
<p class="choose-item-description">
We do more than web hosting. Our tool suite includes everything
you need to be successfull.
</p>
</div>
<div class="choose-item-list">
<i class="fa-solid fa-gauge-high choose-icon"></i>
<span class="choose-item-title">
Fast & Relible
</span>
<p class="choose-item-description">
If your website is slow or down, then your are
losing customers, conversion and search engine
rankings.
</p>
</div>
<div class="choose-item-list" style="background-color: rgb(57, 57, 236); color: #fff;">
<i class="fa-solid fa-rotate choose-icon" style="color: #fff;"></i>
<span class="choose-item-title">
24/7 Experts Support
</span>
<p class="choose-item-description">
Our award winning us-based experts are available to help
when you get stuck---anytime, day or night.
</p>
</div>
</div>
</div>
</section>
<!--end choose us section-->
<!--Services Section-->
<section class="services">
<div class="services-container">
<div class="services-list">
<div class="services-list-one">
<div class="services-list-main-one">
<span class="services-title">
Our <span class="colorfull" style="font-weight: bolder;">Services</span>
</span>
<span class="services-title-sub">
<i class="fa-solid fa-quote-left"></i> What do we offer <i class="fa-solid fa-quote-right"></i>
</span>
</div>
</div>
<div class="services-list-item">
<i class="fa-solid fa-server services-icon"></i>
<span class="services-item-title">
Colocation
</span>
<p class="services-item-description">
Experience seamless and reliable web hosting
solutions that ensure your website stays online
24/7, backed by cutting-edge
technology and expert support.
</p>
<a href="#" class="services-btn">Explore</a>
</div>
<div class="services-list-item">
<i class="fa-solid fa-cloud services-icon"></i>
<span class="services-item-title">
Cloud Servers
</span>
<p class="services-item-description">
Experience seamless and reliable web hosting
solutions that ensure your website stays online
24/7, backed by cutting-edge
technology and expert support.
</p>
<a href="#" class="services-btn">Explore</a>
</div>
<div class="services-list-item">
<i class="fa-solid fa-globe services-icon"></i>
<span class="services-item-title">
Web Hosting
</span>
<p class="services-item-description">
Experience seamless and reliable web hosting
solutions that ensure your website stays online
24/7, backed by cutting-edge
technology and expert support.
</p>
<a href="#" class="services-btn">Explore</a>
</div>
<div class="services-list-item">
<i class="fa-solid fa-window-restore services-icon"></i>
<span class="services-item-title">
Back-Up as a Services (BaaS)
</span>
<p class="services-item-description">
Experience seamless and reliable web hosting
solutions that ensure your website stays online
24/7, backed by cutting-edge
technology and expert support.
</p>
<a href="#" class="services-btn">Explore</a>
</div>
<div class="services-list-item">
<i class="fa-solid fa-code services-icon"></i>
<span class="services-item-title">
Software as a Services (SaaS)
</span>
<p class="services-item-description">
Experience seamless and reliable web hosting
solutions that ensure your website stays online
24/7, backed by cutting-edge
technology and expert support.
</p>
<a href="#" class="services-btn">Explore</a>
</div>
<div class="services-list-item">
<i class="fa-solid fa-display services-icon"></i>
<span class="services-item-title">
Virtual Desktop Infratructure
</span>
<p class="services-item-description">
Experience seamless and reliable web hosting
solutions that ensure your website stays online
24/7, backed by cutting-edge
technology and expert support.
</p>
<a href="#" class="services-btn">Explore</a>
</div>
<div class="services-list-item">
<i class="fa-solid fa-play services-icon"></i>
<span class="services-item-title">
Video Conferencing Infratructure
</span>
<p class="services-item-description">
Experience seamless and reliable web hosting
solutions that ensure your website stays online
24/7, backed by cutting-edge
technology and expert support.
</p>
<a href="#" class="services-btn">Explore</a>
</div>
</div>
</div>
</section>
<!--End Services Section-->
<!--Testimonial Section-->
<section class="testimonial">
<div class="testimonial-container">
<div class="testimonial-heading">
<span class="testimonial-title">
Testimonial
</span>
<span class="testimonial-title-sub">
What do our customers <span class="colorfull">say?</span>
</span>
</div>
<div class="testimonial-item">
<div class="testimonial-item-list">
<div class="testimonail-header">
<img src="https://smilequestdental.com/wp-content/uploads/2016/11/test24-4.jpg" alt="" class="testimonial-img">
<div class="coustumer-info">
<span class="name">
John Doe
</span>
<span class="job-title">
Designer
</span>
</div>
</div>
<div class="testimonial-footer">
<p class="feedback">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Minima nihil consequatur quae eum ex culpa? Ipsum
dolorum tempore necessitatibus vitae, doloremque
corporis eligendi.
</p>
<img src="https://png.pngtree.com/png-vector/20220610/ourmid/pngtree-five-star-rating-icon-png-image_4974126.png" class="rating-img" alt="">
</div>
</div>
<div class="testimonial-item-list">
<div class="testimonail-header">
<img src="https://remax-aphotos-papi.imgix.net/Person/102055336/MainPhoto_cropped/MainPhoto_cropped.jpg" alt="" class="testimonial-img">
<div class="coustumer-info">
<span class="name">
Mary Lee
</span>
<span class="job-title">
Art Expert
</span>
</div>
</div>
<div class="testimonial-footer">
<p class="feedback">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Minima nihil consequatur quae eum ex culpa? Ipsum
dolorum tempore necessitatibus vitae, doloremque
corporis eligendi.
</p>
<img src="https://png.pngtree.com/png-vector/20220610/ourmid/pngtree-five-star-rating-icon-png-image_4974126.png" class="rating-img" alt="">
</div>
</div>
<div class="testimonial-item-list">
<div class="testimonail-header">
<img src="https://media.istockphoto.com/id/1471845315/photo/happy-portrait-or-business-woman-taking-a-selfie-in-office-building-for-a-social-media.webp?b=1&s=170667a&w=0&k=20&c=2-VGjlhPIjfj1I98HnA_qVM7TePchgVXe2y3TI65Y-0=" alt="" class="testimonial-img">
<div class="coustumer-info">
<span class="name">
Lisa Moon
</span>
<span class="job-title">
Developer
</span>
</div>
</div>
<div class="testimonial-footer">
<p class="feedback">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Minima nihil consequatur quae eum ex culpa? Ipsum
dolorum tempore necessitatibus vitae, doloremque
corporis eligendi.
</p>
<img src="https://png.pngtree.com/png-vector/20220610/ourmid/pngtree-five-star-rating-icon-png-image_4974126.png" class="rating-img" alt="">
</div>
</div>
</div>
<div class="testimonail-icon">
<i class="fa-solid fa-angle-left feedback-icon"></i>
<i class="fa-solid fa-angle-right feedback-icon"></i>
</div>
</div>
</section>
<!--End Testimonial Section-->
<!---Search Domain Section-->
<section class="domain">
<div class="domian-container">
<span class="domain-title">
It All Start With A Domain
</span>
<p class="domain-description">
Make Your Idea Real. Claim Your Space Online With A Domain.
</p>
<div class="input-container">
<input type="text" placeholder="Find Your Perfect Domain">
<button type="button">Search</button>
</div>
</div>
</section>
<!--End Search Domain Section-->
<!--Faq Section-->
<section class="faq">
<div class="faq-container">
<div class="services-list-one">
<div class="services-list-main-one">
<span class="services-title">
FAQ'<span class="colorfull">s</span>
</span>
</div>
</div>
<div class="faq-item">
<div class="faq-item-list">
<div class="faq-item-heading">
<span class="faq-item-title">Support</span>
<span class="faq-item-sub-title">Frequently Asked Questions?</span>
<p class="faq-description">If you can't find the answer you are looking for our
support is just an email away.
</p>
</div>
</div>
<div class="faq-item-list">
<button class="accordion">How Long You Have Been In Business?</button>
<div class="panel">
<p>Lorem ipsum...</p>
</div>
<button class="accordion">Which Payment Method Is Available?</button>
<div class="panel">
<p>Lorem ipsum...</p>
</div>
<button class="accordion">Which Methods Of Support Do You Provide?</button>
<div class="panel">
<p>Lorem ipsum...</p>
</div>
</div>
</div>
</div>
</section>
<!--End Faq Section-->
<!--Footer Session -->
<footer class="footer">
<div class="footer-container">
<div class="footer-coloum-one">
<h1 class="footer-main-heading">Cloudsnap</h1>
<p class="footer-coloum-one-description">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Accusamus exercitationem doloribus, temporibus
repellat qui modi minus, animi sit ipsam quo.
</p>
</div>
<div class="footer-coloum-two">
<h1 class="footer-main-heading">Company</h1>
<div class="footer-one-menu">
<i class="fa fa-angle-double-right footer-angle"><a href="#">Help Center</a></i>
<i class="fa fa-angle-double-right footer-angle"><a href="#">About</a></i>
<i class="fa fa-angle-double-right footer-angle"><a href="#">Blog</a></i>
<i class="fa fa-angle-double-right footer-angle"><a href="#">FAQs</a></i>
</div>
</div>
<div class="footer-coloum-three">
<h1 class="footer-main-heading">Privacy</h1>
<div class="footer-one-menu">
<i class="fa fa-angle-double-right footer-angle"><a href="#">Term & Condition</a></i>
<i class="fa fa-angle-double-right footer-angle"><a href="#">Supports</a></i>
<i class="fa fa-angle-double-right footer-angle"><a href="#">Exparts</a></i>
<i class="fa fa-angle-double-right footer-angle"><a href="#">Privacy & Policy</a></i>
</div>
</div>
<div class="footer-coloum-four">
<h1 class="footer-main-heading">Contact Us</h1>
<div class="footer-contact">
<i class="fa fa-envelope"></i><span>support@example.com</span>
</div>
<div class="footer-contact">
<i class="fa fa-phone"></i><span>+923000000000</span>
</div>
<div class="footer-contact">
<i class="fa fa-globe"></i><span>support@example.com</span>
</div>
<div class="footer-contact">
<a href=""><i class="fa fa-facebook footer-icon"></i></a>
<a href=""><i class="fa fa-twitter footer-icon"></i></a>
<a href=""><i class="fa fa-linkedin footer-icon"></i></a>
<a href=""><i class="fa fa-pinterest footer-icon"></i></a>
</div>
</div>
</div>
<div class="footer-footer">
<span class="footer-footer-text">
Designed By: <a href="https://www.codebyadnan.com">Adnan Khan</a>
<div class="footer-footer-icon">
<a href="https://www.facebook.com/adnankhmalik.me"><i class="fa fa-facebook"></i></a>
<a href="https://www.behance.net/adnankhmalik"><i class="fa fa-behance"></i></a>
<a href="https://www.instagram.com/adnankhmalik.me"><i class="fa fa-instagram"></i></a>
</div>
</span>
</div>
</footer>
<!--End Footer Session -->
<!-- Back to Top Button -->
<button id="backToTopBtn" title="Go to top"><i class="fa-solid fa-arrow-up"></i></button>
<!-- End Back to Top Button -->
<!--Js Links-->
<script src="assets/js/main.js"></script>
<script src="https://kit.fontawesome.com/9498bdc1c3.js" crossorigin="anonymous"></script>
<!--End Js Links-->
</body>
</html>