-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathknowledgebase.html
More file actions
1338 lines (1298 loc) · 89 KB
/
knowledgebase.html
File metadata and controls
1338 lines (1298 loc) · 89 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
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
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hosthaps-Pakistan #1 cheapest Hosting Provider</title>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta
content="Explore high-performance, secure, and affordable hosting solutions for your website. Say goodbye to slow speeds and keep your visitors engaged with reliable hosting services."
name="description">
<meta
content="Affordable reseller hosting Pakistan, Cheap web hosting reseller plans, Best reseller hosting Pakistan, Reseller hosting packages Pakistan, Economical reseller hosting, Cheap cPanel reseller hosting, Pakistan reseller hosting deals, Low-cost reseller hosting, Budget reseller hosting Pakistan, Inexpensive reseller hosting plans, Cheap SSD reseller hosting, Reseller hosting offers Pakistan, Discounted reseller hosting, Cheapest reseller hosting provider, Affordable hosting reseller services, Cheap Linux reseller hosting, Reseller hosting promotions Pakistan, Pakistan budget hosting reseller, Cost-effective reseller hosting, Cheap WHM reseller hosting, Low-price reseller hosting plans, Cheap web host reseller packages, Pakistan affordable hosting reseller, Cheap reseller hosting services, Cheap hosting reseller account, Reseller hosting Pakistan cheap rates, Cheapest web hosting reseller, Best cheap reseller hosting, Reseller hosting with free SSL, Cheap Pakistan reseller web hosting"
name="keywords">
<meta content="Hosthaps-Pakistan #1 cheapest Hosting & Domain Provider" name="Hosthaps">
<link rel="shortcut icon" type="image/x-icon" href="assets/images/fav.png">
<!-- bootstrap css -->
<link rel="stylesheet preload" href="assets/css/vendor/bootstrap.min.css" as="style">
<!-- fontawesome css -->
<link rel="stylesheet preload" href="assets/css/plugins/fontawesome.min.css" as="style">
<!-- swiper css -->
<link rel="stylesheet preload" href="assets/css/plugins/swiper.min.css" as="style">
<!-- magnific popup css -->
<link rel="stylesheet preload" href="assets/css/plugins/magnific-popup.css" as="style">
<!-- aos css -->
<!-- <link rel="stylesheet preload" href="assets/css/plugins/aos.min.css" as="style"> -->
<link rel="stylesheet preload" href="assets/css/plugins/sal.min.css" as="style">
<!-- nice select css -->
<link rel="stylesheet preload" href="assets/css/plugins/nice-select.css" as="style">
<!-- metismenu css -->
<link rel="stylesheet preload" href="assets/css/plugins/metismenu.css" as="style">
<!-- Custom css -->
<link rel="stylesheet preload" href="assets/css/style.css" as="style">
</head>
<div class="page-template template-pricing">
<!-- HEADER AREA -->
<header class="rts-header style-one header__default">
<!-- HEADER TOP AREA -->
<div class="rts-ht rts-ht__bg">
<div class="container">
<div class="row">
<div class="rts-ht__wrapper">
<div class="rts-ht__email">
<a href="mailto:info@hostie.com"><img src="assets/images/icon/email.svg" alt=""
class="icon">info@hosthaps.com</a>
</div>
<div class="rts-ht__promo">
<p><img class="icon" src="assets/images/icon/tag--group.svg" alt=""> Hosting Flash Sale:
Starting at <strong>80RS/mo</strong> for a limited time</p>
</div>
<div class="rts-ht__links">
<!-- <div class="live-chat-has-dropdown">
<a href="#" class="live__chat"><img src="assets/images/icon/forum.svg" alt="" class="icon">Live Chat</a>
</div>
<div class="login-btn-has-dropdown">
<a href="#" class="login__link"><img src="assets/images/icon/person.svg" alt="" class="icon">Login</a>
<div class="login-submenu">
<form action="#">
<div class="form-inner">
<div class="single-wrapper">
<input type="email" placeholder="Your email" required>
</div>
<div class="single-wrapper">
<input type="password" placeholder="Password" required>
</div>
<div class="form-btn">
<button type="submit" class="primary__btn">Log In</button>
</div>
<a href="#" class="forgot-password">Forgot your password?</a>
</div>
</form>
</div>
</div> -->
</div>
</div>
</div>
</div>
</div>
<!-- HEADER TOP AREA END -->
<div class="container">
<div class="row">
<div class="rts-header__wrapper">
<!-- FOR LOGO -->
<div class="rts-header__logo">
<a href="index.html" class="site-logo">
<!-- <img class="logo-white" src="pic.png" alt="Hostie">
<img class="logo-dark" src="pic.png" alt="Hostie"> -->
</a>
</div>
<!-- FOR NAVIGATION MENU -->
<nav class="rts-header__menu" id="mobile-menu">
<div class="hostie-menu">
<ul class="list-unstyled hostie-desktop-menu">
<li class="menu-item hostie-has-dropdown">
<!-- <a href="#" class="hostie-dropdown-main-element">Home</a> -->
<!-- Start Dropdown Menu -->
<!-- <ul class="hostie-submenu list-unstyled menu-home">
<li class="nav-item"><a class="nav-link page" href="index.html">Home 01</a></li>
<li class="nav-item"><a class="nav-link" href="index-two.html">Home 02</a></li>
<li class="nav-item"><a class="nav-link" href="index-three.html">Home 03</a></li>
<li class="nav-item"><a class="nav-link" href="index-four.html">Home 04</a></li>
<li class="nav-item"><a class="nav-link" href="index-five.html">Home 05</a></li>
<li class="nav-item"><a class="nav-link" href="index-six.html">Home 06</a></li>
</ul> -->
<!-- End Dropdown Menu -->
</li>
<li class="menu-item hostie-has-dropdown mega-menu big">
<!-- <a href="#" class="hostie-dropdown-main-element">Pages</a>
<div class="rts-mega-menu">
<div class="wrapper">
<div class="row g-0">
<div class="col-lg-3">
<ul class="mega-menu-item">
<li>
<a href="about.html">
<img src="assets/images/mega-menu/01.svg" alt="icon">
<div class="info">
<p>About Hostie</p>
<span>Get know about Hostie </span>
</div>
</a>
</li>
<li>
<a href="pricing.html">
<img src="assets/images/mega-menu/03.svg" alt="icon">
<div class="info">
<p>Pricing</p>
<span>Hostie provide pro price</span>
</div>
</a>
</li>
<li>
<a href="affiliate.html">
<img src="assets/images/mega-menu/02.svg" alt="icon">
<div class="info">
<p>Affiliate</p>
<span>provide detailed explan</span>
</div>
</a>
</li>
<li>
<a href="sign-up.html">
<img src="assets/images/mega-menu/04.svg" alt="icon">
<div class="info">
<p>Sign Up</p>
<span>Create content by you</span>
</div>
</a>
</li>
<li>
<a href="blog.html">
<img src="assets/images/mega-menu/07.svg" alt="icon">
<div class="info">
<p>Blog</p>
<span>Read Hostie artical</span>
</div>
</a>
</li>
<li>
<a href="partner.html">
<img src="assets/images/mega-menu/06.svg" alt="icon">
<div class="info">
<p>Partner</p>
<span>Our partners</span>
</div>
</a>
</li>
</ul>
</div>
<div class="col-lg-3">
<ul class="mega-menu-item">
<li>
<a href="support.html">
<img src="assets/images/mega-menu/08.svg" alt="icon">
<div class="info">
<p>Support</p>
<span>Provide detailed explan</span>
</div>
</a>
</li>
<li>
<a href="pricing-two.html">
<img src="assets/images/mega-menu/03.svg" alt="icon">
<div class="info">
<p>Pricing Package</p>
<span>Hostie provide pro price</span>
</div>
</a>
</li>
<li>
<a href="business-mail.html">
<img src="assets/images/mega-menu/10.svg" alt="icon">
<div class="info">
<p>Business Mail</p>
<span>Provide detailed explan</span>
</div>
</a>
</li>
<li>
<a href="sign-in.html">
<img src="assets/images/mega-menu/09.svg" alt="icon">
<div class="info">
<p>Sign In</p>
<span>Login Account</span>
</div>
</a>
</li>
<li>
<a href="blog-list.html">
<img src="assets/images/mega-menu/07.svg" alt="icon">
<div class="info">
<p>Blog List</p>
<span>Read Hostie artical</span>
</div>
</a>
</li>
<li>
<a href="maintenance.html">
<img src="assets/images/mega-menu/21.svg" alt="icon">
<div class="info">
<p>Maintenance</p>
<span>We will be soon</span>
</div>
</a>
</li>
</ul>
</div>
<div class="col-lg-3">
<ul class="mega-menu-item">
<li>
<a href="domain-checker.html">
<img src="assets/images/mega-menu/12.svg" alt="icon">
<div class="info">
<p>Domain Checker</p>
<span>Provide detailed explain</span>
</div>
</a>
</li>
<li>
<a href="pricing-three.html">
<img src="assets/images/mega-menu/03.svg" alt="icon">
<div class="info">
<p>Pricing Comparision</p>
<span>Hostie provide pro price</span>
</div>
</a>
</li>
<li>
<a href="ssl-certificate.html">
<img src="assets/images/mega-menu/14.svg" alt="icon">
<div class="info">
<p>SSL Certificates</p>
<span>Our security</span>
</div>
</a>
</li>
<li>
<a href="whois.html">
<img src="assets/images/mega-menu/05.svg" alt="icon">
<div class="info">
<p>Whois</p>
<span>Who we are</span>
</div>
</a>
</li>
<li>
<a href="blog-grid-2.html">
<img src="assets/images/mega-menu/07.svg" alt="icon">
<div class="info">
<p>Blog Grid</p>
<span>Read Hostie artical</span>
</div>
</a>
</li>
<li>
<a href="black-friday.html">
<img src="assets/images/mega-menu/30.png" alt="icon">
<div class="info">
<p>Black Friday</p>
<span>Exciting Offer!</span>
</div>
</a>
</li>
</ul>
</div>
<div class="col-lg-3">
<ul class="mega-menu-item">
<li>
<a href="contact.html">
<img src="assets/images/mega-menu/16.svg" alt="icon">
<div class="info">
<p>Contact</p>
<span>Contact with Hostie</span>
</div>
</a>
</li>
<li>
<a href="payment-method.html">
<img src="assets/images/mega-menu/20.svg" alt="icon">
<div class="info">
<p>Payment Method</p>
<span>Payment Method</span>
</div>
</a>
</li>
<li>
<a href="domain-transfer.html">
<img src="assets/images/mega-menu/17.svg" alt="icon">
<div class="info">
<p>Domain Transfer</p>
<span>provide detailed explan</span>
</div>
</a>
</li>
<li>
<a href="knowledgebase.html">
<img src="assets/images/mega-menu/11.svg" alt="icon">
<div class="info">
<p>Knowledgebase</p>
<span>Read Hostie article</span>
</div>
</a>
</li>
<li>
<a href="blog-details.html">
<img src="assets/images/mega-menu/07.svg" alt="icon">
<div class="info">
<p>Blog Details</p>
<span>Read Hostie artical</span>
</div>
</a>
</li>
<li>
<a href="404.html">
<img src="assets/images/mega-menu/19.svg" alt="icon">
<div class="info">
<p>Error</p>
<span>Back to home</span>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div> -->
</li>
<li class="menu-item hostie-has-dropdown mega-menu">
<a href="#" class="hostie-dropdown-main-element">Hosting</a>
<div class="rts-mega-menu">
<div class="wrapper">
<div class="row g-0">
<div class="col-lg-6">
<ul class="mega-menu-item">
<li>
<a href="shared-hosting.html">
<img src="assets/images/mega-menu/22.svg" alt="icon">
<div class="info">
<p>Shared Hosting</p>
<span>Manage Shared Hosting</span>
</div>
</a>
</li>
<li>
<a href="wordpress-hosting.html">
<img src="assets/images/mega-menu/23.svg" alt="icon">
<div class="info">
<p>WordPress Hosting</p>
<span>WordPress Hosting speed</span>
</div>
</a>
</li>
<li>
<a href="vps-hosting.html">
<img src="assets/images/mega-menu/24.svg" alt="icon">
<div class="info">
<p>VPS Hosting</p>
<span>Dedicated resources</span>
</div>
</a>
</li>
</ul>
</div>
<div class="col-lg-6">
<ul class="mega-menu-item">
<li>
<a href="reseller-hosting.html">
<img src="assets/images/mega-menu/25.svg" alt="icon">
<div class="info">
<p>Reseller Hosting</p>
<span>Earn additional revenue</span>
</div>
</a>
</li>
<li>
<a href="dedicated-hosting.html">
<img src="assets/images/mega-menu/27.svg" alt="icon">
<div class="info">
<p>Dedicated Hosting</p>
<span>Hosting that gives you tools</span>
</div>
</a>
</li>
<li>
<a href="cloud-hosting.html">
<img src="assets/images/mega-menu/29.svg" alt="icon">
<div class="info">
<p>Cloud Hosting</p>
<span>Manage Cloud Hosting</span>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</li>
<li class="menu-item hostie-has-dropdown">
<a href="#" class="hostie-dropdown-main-element">Domain</a>
<ul class="hostie-submenu list-unstyled menu-pages">
<li class="nav-item"><a class="nav-link" href="domain-checker.html">Domain
Checker</a></li>
<li class="nav-item"><a class="nav-link" href="domain-transfer.html">Domain
Transfer</a></li>
<li class="nav-item"><a class="nav-link" href="domain-registration.html">Domain
Resigtration</a></li>
<!-- <li class="nav-item"><a class="nav-link" href="whois.html">Whois</a></li> -->
</ul>
</li>
<li class="menu-item hostie-has-dropdown">
<a href="#" class="hostie-dropdown-main-element">Technology</a>
<ul class="hostie-submenu list-unstyled menu-pages">
<li class="nav-item"><a class="nav-link" href="technology.html">Technology</a>
</li>
<li class="nav-item"><a class="nav-link" href="data-center.html">Data
Centers</a></li>
</ul>
</li>
<li class="menu-item hostie-has-dropdown">
<a href="#" class="hostie-dropdown-main-element">Help Center</a>
<ul class="hostie-submenu list-unstyled menu-pages">
<li class="nav-item"><a class="nav-link"
href="knowledgebase.html">Knowledgebase</a></li>
<li class="nav-item"><a class="nav-link" href="faq.html">FAQ</a></li>
<li class="nav-item"><a class="nav-link" href="support.html">Support</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<!-- FOR HEADER RIGHT -->
<div class="rts-header__right">
<a href="https://hosthaps.com/clients/index.php?rp=/login" class="login__btn">Client Area</a>
<button id="menu-btn" class="mobile__active menu-btn"><i
class="fa-sharp fa-solid fa-bars"></i></button>
</div>
</div>
</div>
</div>
</header>
<!-- HEADER AREA END -->
<!-- shared hosting banner -->
<div class="rts-hosting-banner rts-hosting-banner-bg banner-default-height">
<div class="container">
<div class="row justify-content-sm-center">
<div class="banner-area">
<div class="rts-hosting-banner rts-hosting-banner__content w-550">
<span class="starting__price" data-sal="slide-down" data-sal-delay="100"
data-sal-duration="800">Knowledgebase</span>
<h1 class="banner-title" data-sal="slide-down" data-sal-delay="200" data-sal-duration="800">
knowledgebase List
</h1>
<p class="slogan" data-sal="slide-down" data-sal-delay="300" data-sal-duration="800"> We
collaborate with the providers of best-of-breed technologies, services, and other streams.
</p>
<div class="hosting-action">
<a href="pricing.html" class="btn__two secondary__bg secondary__color">Start Now <i
class="fa-regular fa-long-arrow-right"></i></a>
</div>
</div>
<div class="rts-hosting-banner__image mt-md-5">
<img src="assets/images/banner/knowledgebase.png" alt="">
<img class="shape-image one" src="assets/images/banner/banner__business__mail__image-sm1.svg"
alt="">
</div>
</div>
</div>
</div>
</div>
<!-- shared hosting banner end-->
<!-- KNOWLEDGE BASE ITEM -->
<div class="rts-knowledgebase pt--120 pb--60">
<div class="container">
<div7 class="row g-5">
<div class="col-xl-4 col-lg-5">
<div class="rts-sidebar">
<div class="rts-single-widget category-widget knowledge__tab__section">
<h4 class="widget-title">Knowledgebase</h4>
<ul class="list-unstyled cat__counter nav nav-tabs" id="myTab" role="tablist">
<li class="single-cat nav-item" role="presentation">
<button class="button-tab" id="share-hosting" data-bs-toggle="tab"
data-bs-target="#share-hosting-tab" type="button" role="tab"
aria-controls="share-hosting" aria-selected="true" tabindex="0">Share Hosting
<span>(10)</span></button>
</li>
<li class="single-cat nav-item" role="presentation">
<button class="button-tab" id="ssl" data-bs-toggle="tab" data-bs-target="#ssl-tab"
type="button" role="tab" aria-controls="ssl" aria-selected="false"
tabindex="0">Certificates SSL <span>(5)</span></button>
</li>
<li class="single-cat nav-item" role="presentation">
<button class="button-tab" id="domain-transfer" data-bs-toggle="tab"
data-bs-target="#domain-transfer-tab" type="button" role="tab"
aria-controls="domain-transfer" aria-selected="false" tabindex="0">Domain
Transfers <span>(5)</span></button>
</li>
<li class="single-cat nav-item" role="presentation">
<button class="button-tab" id="cloud-hosting" data-bs-toggle="tab"
data-bs-target="#cloud-hosting-tab" type="button" role="tab"
aria-controls="cloud-hosting" aria-selected="false" tabindex="0">Cloud VPS
<span>(5)</span></button>
</li>
<li class="single-cat nav-item" role="presentation">
<button class="button-tab" id="dedicated" data-bs-toggle="tab"
data-bs-target="#dedicated-tab" type="button" role="tab"
aria-controls="dedicated" aria-selected="false" tabindex="0">Dedicated Servers
<span>(5)</span></button>
</li>
<li class="single-cat nav-item" role="presentation">
<button class="button-tab" id="email-service" data-bs-toggle="tab"
data-bs-target="#email-service-tab" type="button" role="tab"
aria-controls="email-service" aria-selected="false" tabindex="0">Email Service
<span>(5)</span></button>
</li>
</ul>
</div>
</div>
</div>
<div class="col-xl-8 col-lg-7">
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade active show knowledge__content" id="share-hosting-tab" role="tabpanel"
aria-labelledby="share-hosting">
<div class="content-list">
<div class="single-content">
<h5>Share Hosting</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Certificates SSL</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Domain Transfers </h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Cloud VPS</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Dedicated Servers</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
</div>
</div>
<div class="tab-pane fade knowledge__content" id="ssl-tab" role="tabpanel"
aria-labelledby="ssl">
<div class="content-list">
<div class="single-content">
<h5>Share Hosting</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Certificates SSL</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Domain Transfers </h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Cloud VPS</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Dedicated Servers</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
</div>
</div>
<div class="tab-pane fade knowledge__content" id="domain-transfer-tab" role="tabpanel"
aria-labelledby="domain-transfer">
<div class="content-list">
<div class="single-content">
<h5>Share Hosting</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Certificates SSL</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Domain Transfers </h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Cloud VPS</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Dedicated Servers</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
</div>
</div>
<div class="tab-pane fade knowledge__content" id="cloud-hosting-tab" role="tabpanel"
aria-labelledby="cloud-hosting">
<div class="content-list">
<div class="single-content">
<h5>Share Hosting</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Certificates SSL</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Domain Transfers </h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Cloud VPS</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Dedicated Servers</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
</div>
</div>
<div class="tab-pane fade knowledge__content" id="dedicated-tab" role="tabpanel"
aria-labelledby="dedicated">
<div class="content-list">
<div class="single-content">
<h5>Share Hosting</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Certificates SSL</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Domain Transfers </h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Cloud VPS</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Dedicated Servers</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
</div>
</div>
<div class="tab-pane fade knowledge__content" id="email-service-tab" role="tabpanel"
aria-labelledby="email-service">
<div class="content-list">
<div class="single-content">
<h5>Share Hosting</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Certificates SSL</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Domain Transfers </h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Cloud VPS</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
<div class="single-content">
<h5>Dedicated Servers</h5>
<p class="icon-text"><span><i class="fa-regular fa-file-lines"></i></span>How to
Create,
Update, and Delete a Project?</p>
<p>A comprehensive guide on how you can create, update, and delete a project on
the Cloudways platform.</p>
</div>
</div>
</div>
</div>
</div>
</div7 </div>
</div>
</div>
<!-- KNOWLEDGE BASE ITEM END -->
<!-- SUPPORT AREA -->
<div class="rts-support pb--60">
<div class="container">
<div class="row">
<div class="rts-support__wrapper bg-white">
<div class="rts-support__wrapper--content">
<h3 class="title" data-sal="slide-down" data-sal-delay="100" data-sal-duration="800">24/7
World-Class Support</h3>
<p data-sal="slide-down" data-sal-delay="200" data-sal-duration="800">Ran into trouble? Contact
our Customer Success team any
time via live chat or email.
</p>
<div class="feature" data-sal="slide-down" data-sal-delay="300" data-sal-duration="800">
<ul class="feature__list">
<li class="feature__item">Receive professional WordPress support</li>
<li class="feature__item">Our specialists are available round</li>
</ul>
</div>
<a href="support.html" class="rts-btn rts-btn-primary support-btn">Get Support <i
class="fa-regular fa-chevron-right"></i></a>
</div>
<div class="rts-support__wrapper--image" data-sal="slide-left" data-sal-delay="400"
data-sal-duration="800">
<img src="assets/images/support/support__image.svg" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- SUPPORT AREA END -->
<!-- HOSTIE CTA -->
<div class="rts-cta-two shared-page-bg ">
<div class="container">
<div class="row">
<div class="rts-cta-two__wrapper">
<div class="cta__shape"></div>
<div class="cta-content">
<span data-sal="slide-down" data-sal-delay="100" data-sal-duration="800">Need help choosing a
plan?</span>
<h4 data-sal="slide-down" data-sal-delay="200" data-sal-duration="800">Need help?
We're always here for you.</h4>
</div>
<div class="cta-btn">
<a href="#" class="contact__us primary__btn btn__two secondary__bg secondary__color">Go to Live
chat Page</a>
</div>
</div>
</div>
</div>
</div>
<!-- HOSTIE CTA END -->
<!-- STAND PALESTINE START -- Ali Abdullah -->
<section class="rts-stand_palestine rts-brand__bg--section section__padding">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 d-flex justify-content-center">
<div class="w-530 text-center">
<h3 class="rts-section__title" data-sal="slide-down" data-sal-delay="300"
data-sal-duration="800">We Stand With PALESTINE <img style="padding-bottom: 8px;"
src="./assets/images/palestine/palestine.webp"></h3>
<p class="rts-section__description" data-sal="slide-down" data-sal-delay="400"
data-sal-duration="800">At HostHaps, we stand in solidarity with the people of Palestine. We
support their right to peace, justice, and freedom.</p>
</div>
</div>
</div>
</div>
</section>
<!-- STAND PALESTINE END -->
<!-- FOOTER AREA -- Ali Abdullah-->
<footer class="rts-footer site-footer-one section__padding rts-footer__border"
style="border-top: #0051F0 solid 6px;">
<div class="container">
<div class="row">
<!-- widget Column -->
<div class="col-lg-3 col-md-5 col-sm-6">
<div class="rts-footer__widget--column">
<!-- Widget -->
<div class="rts-footer__widget footer__widget">
<a href="#" class="footer__logo">
<img src="pic.png" alt="">
</a>
<p class="brand-desc">We are a Cheap web-hosting & Domain provider on a mission to bring
success to everyone online. We constantly improve our server technology, provide more
cheaper, professional support, and simplify
site creation.</p>
<div class="separator site-default-border"></div>
</div>
<!-- Widget end -->
<!-- Widget -->
<div class="rts-footer__widget footer__widget">
<h5 class="widget-title">Join Our Newsletter</h5>
<p>Signup for our newsletter to get the latest news in your inbox.</p>
<form action="#" class="newsletter mx-40">
<input type="email" class="home-one" name="email" placeholder="Enter mail" required>
<span class="icon"><i class="fa-regular fa-envelope-open"></i></span>
<button type="submit"><i class="fa-regular fa-arrow-right"></i></button>
</form>
<div class="social__media">
<h5>Follow Us on</h5>
<div class="social__media--list">
<a href="#" class="media"><i class="fa-brands fa-facebook-f"></i></a>
<a href="#" class="media"><i class="fa-brands fa-instagram"></i></a>
<a href="#" class="media"><i class="fa-brands fa-linkedin"></i></a>
<a href="#" class="media"><i class="fa-brands fa-twitter"></i></a>
<a href="#" class="media"><i class="fa-brands fa-behance"></i></a>
</div>
</div>
</div>
<!-- Widget end -->
<!-- Widget -->
<div class="rts-footer__widget footer__widget">
<div class="payment__method">
<h5>We Accepted</h5>
<ul>
<li><img src="assets/images/payment/visa.svg" alt=""></li>
<li><img src="assets/images/payment/master-card.svg" alt=""></li>
<li><img src="assets/images/payment/paypal.svg" alt=""></li>
<li><img src="assets/images/payment/american-express.svg" alt=""></li>
<li><img src="assets/images/payment/wise.svg" alt=""></li>
</ul>
</div>
</div>
<!-- Widget end -->
</div>
</div>
<!-- widget Column end -->
<!-- widget Column -->
<div class="col-lg-9 col-md-7 col-sm-12">
<div class="row d-flex justify-content-end">
<!-- Sub Column -->
<!-- <div class="col-lg-2 col-md-3 col-sm-6 rts-footer__widget--column">
<div class="rts-footer__widget footer__widget extra-padding">
<h5 class="widget-title">Company</h5>
<div class="rts-footer__widget--menu ">
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="blog.html">News Feed</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="affiliate.html">Affiliate Program</a></li>
<li><a href="technology.html">Our Technology</a></li>
<li><a href="knowledgebase.html">Knowledgebase</a></li>
</ul>
</div>
</div>
</div> -->
<!-- Sub Column end -->
<!-- Sub Column -->
<div class="col-lg-3 col-md-4 col-sm-4 rts-footer__widget--column">
<div class="rts-footer__widget footer__widget extra-padding">
<h5 class="widget-title">Domain</h5>
<div class="rts-footer__widget--menu ">
<ul>
<li><a href="domain-checker.html">Domain Checker</a></li>
<li><a href="domain-transfer.html">Domain Transfer</a></li>
<li><a href="domain-registration.html">Domain Registration</a></li>
</ul>
</div>