-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdedicated-hosting.html
More file actions
2960 lines (2906 loc) · 329 KB
/
dedicated-hosting.html
File metadata and controls
2960 lines (2906 loc) · 329 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>
<body class="page-template template-dedicated">
<!-- 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 dedicated__banner">
<span class="starting__price">Dedicated Hosting</span>
<h1 class="banner-title">
Fully-Managed
Dedicated Server Hosting
</h1>
<p class="slogan">Professional hosting at an affordable price.</p>
<div class="hosting-action">
<a href="pricing.html" class="btn__two secondary__bg secondary__color">View Plan <i
class="fa-regular fa-arrow-right"></i></a>
<a href="pricing-two.html" class="btn__white">Starting @ $10.00/mo</a>
</div>
</div>
<div class="rts-hosting-banner__image dedicated-banner__image">
<img src="assets/images/banner/banner__dedicated__image.svg" alt="">
<img class="shape-image one" src="assets/images/banner/banner__dedicated__image-sm1.svg" alt="">
<img class="shape-image two" src="assets/images/banner/banner__dedicated__image-sm2.svg" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- shared hosting banner end-->
<!-- FEATURE -->
<div class="rts-dedicated-feature section__padding">
<div class="container">
<div class="row gy-30">
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="dedicated-feature">
<div class="icon">
<img src="assets/images/feature/dedicated/1.svg" alt="">
</div>
<h4 class="title">Multi-server management</h4>
<p class="description">
Create passwords for specific access, such
as ownership information, server a master.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="dedicated-feature">
<div class="icon">
<img src="assets/images/feature/dedicated/2.svg" alt="">
</div>
<h4 class="title">Hosting Access Control</h4>
<p class="description">
Create passwords for specific access, such
as ownership information, server a master.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<div class="dedicated-feature">
<div class="icon">
<img src="assets/images/feature/dedicated/3.svg" alt="">
</div>
<h4 class="title">Root Access</h4>
<p class="description">
Create passwords for specific access, such
as ownership information, server a master.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- FEATURE END -->
<!-- PRICING PLAN START -->
<div class="rts-pricing-plan table-pricing pb-120">
<div class="container">
<div class="row justify-content-center">
<div class="rts-section w-640 text-center">
<h2 class="rts-section__title">
Compare Hostie Dedicated
Hosting Plans
</h2>
</div>
</div>
<div class="row">
<div class="row justify-content-center">
<div class="col-xl-4 col-lg-5 col-md-6">
<div class="rts-pricing-plan__tab pricing__tab">
<div class="tab__button">
<div class="tab__button__item">
<button class="active tab__btn" data-tab="monthly">monthly</button>
<button class="tab__btn" data-tab="yearly">yearly</button>
</div>
</div>
<div class="discount">
<span class="line"><img src="assets/images/pricing/offer__vactor.svg" height="20"
width="85" alt=""></span>
<p>20% save</p>
</div>
</div>
</div>
</div>
<!-- PRICING PLAN -->
<div class="tab__content open" id="monthly">
<table class="table">
<thead class="heading__bg">
<tr>
<th class="cell">Value</th>
<th class="cell">Core</th>
<th class="cell">RAM</th>
<th class="cell">Storage</th>
<th class="cell">Monthly Price</th>
<th class="cell"></th>
</tr>
</thead>
<tbody class="table__content">
<tr>
<td class="package">Standard 4</td>
<td class="process">Intel Xeon 4-Core 8-Thread</td>
<td class="ram">4 GB</td>
<td class="storage">1 TB HDD</td>
<td class="price">$167.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Standard 4</td>
<td class="process">Intel Xeon 4-Core 8-Thread</td>
<td class="ram">8 GB</td>
<td class="storage">1 TB HDD</td>
<td class="price">$199.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Standard 8</td>
<td class="process">Intel Xeon 4-Core 8-Thread</td>
<td class="ram">16 GB</td>
<td class="storage">1 TB HDD</td>
<td class="price">$299.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Standard 16</td>
<td class="process">Intel Xeon 12-Core 24-Thread</td>
<td class="ram">16 GB</td>
<td class="storage">2 TB HDD</td>
<td class="price">$399.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Enhanced 32</td>
<td class="process">Intel Xeon 12-Core 24-Thread</td>
<td class="ram">32 GB</td>
<td class="storage">2 TB HDD</td>
<td class="price">$499.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Enhanced 64</td>
<td class="process">Intel Xeon 12-Core 24-Thread</td>
<td class="ram">64 GB</td>
<td class="storage">2 TB HDD</td>
<td class="price">$599.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Enhanced SSD 16</td>
<td class="process">Intel Xeon 12-Core 24-Thread</td>
<td class="ram">16 GB</td>
<td class="storage">240 GB SSD</td>
<td class="price">$299.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Enhanced SSD 64</td>
<td class="process">Intel Xeon 12-Core 24-Thread</td>
<td class="ram">64 GB</td>
<td class="storage">240 GB SSD</td>
<td class="price">$399.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- PRICING PLAN -->
<div class="tab__content" id="yearly">
<table class="table">
<thead class="heading__bg">
<tr>
<th class="cell">Value</th>
<th class="cell">Core</th>
<th class="cell">RAM</th>
<th class="cell">Storage</th>
<th class="cell">Monthly Price</th>
<th class="cell"></th>
</tr>
</thead>
<tbody class="table__content">
<tr>
<td class="package">Standard 4</td>
<td class="process">Intel Xeon 4-Core 8-Thread</td>
<td class="ram">4 GB</td>
<td class="storage">1 TB HDD</td>
<td class="price">$367.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Standard 4</td>
<td class="process">Intel Xeon 4-Core 8-Thread</td>
<td class="ram">8 GB</td>
<td class="storage">1 TB HDD</td>
<td class="price">$499.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Standard 8</td>
<td class="process">Intel Xeon 4-Core 8-Thread</td>
<td class="ram">16 GB</td>
<td class="storage">1 TB HDD</td>
<td class="price">$599.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Standard 16</td>
<td class="process">Intel Xeon 12-Core 24-Thread</td>
<td class="ram">16 GB</td>
<td class="storage">2 TB HDD</td>
<td class="price">$499.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Enhanced 32</td>
<td class="process">Intel Xeon 12-Core 24-Thread</td>
<td class="ram">32 GB</td>
<td class="storage">2 TB HDD</td>
<td class="price">$699.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Enhanced 64</td>
<td class="process">Intel Xeon 12-Core 24-Thread</td>
<td class="ram">64 GB</td>
<td class="storage">2 TB HDD</td>
<td class="price">$899.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Enhanced SSD 16</td>
<td class="process">Intel Xeon 12-Core 24-Thread</td>
<td class="ram">16 GB</td>
<td class="storage">240 GB SSD</td>
<td class="price">$499.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
<tr>
<td class="package">Enhanced SSD 64</td>
<td class="process">Intel Xeon 12-Core 24-Thread</td>
<td class="ram">64 GB</td>
<td class="storage">240 GB SSD</td>
<td class="price">$599.00/mo</td>
<td>
<div class="btn__two primary__btn">sign up</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- PRICING PLAN END -->
<!-- Dedicated Pay Less Get Most - By AliAbdullah -- START -->
<section class=" rts-payless_getmore section__padding" style="background: #F4F9FF;">
<div class="container rts-hosting-feature" style="background: #F4F9FF;">
<div class="row justify-content-center">
<div class="rts-section text-center w-790">
<h2 class="rts-section__title" data-sal="slide-down" data-sal-delay="100" data-sal-duration="800">
Get More From Your Dedicated Hosting and Pay Less</h2>
<p class="rts-section__description" data-sal="slide-down" data-sal-delay="300"
data-sal-duration="800">Enjoy extra power and control with your own dedicated server, all for an
affordable price.</p>
</div>
</div>
<div class="row justify-content-center">
<div class="hosting-feature" style="width: max-content;">
<div class="feature sal-animate" data-sal="slide-down" data-sal-delay="100" data-sal-duration="800">
<ul class="feature__list" style="column-count: 3;">
<li class="feature__item">Same-day setup</li>
<li class="feature__item">Free migration</li>
<li class="feature__item">99.99% uptime</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Dedicated Pay Less Get Most - END -->
<!-- Dedicated SUCCESS STEPS START -- Ali Abdullah-->
<section class="rts-success_steps section__padding">
<div class="container">
<div class="row ">
<div class="col-12 d-flex justify-content-center">
<div class="rts-section w-790 text-center">
<h2 class="rts-section__title" data-sal="slide-down" data-sal-delay="300"
data-sal-duration="800">Invest In A Dedicated Server That’s 100% Yours – No Sharing
Resources.</h2>
<p class="rts-section__description" data-sal="slide-down" data-sal-delay="400"
data-sal-duration="800">Domain name registration is only the beginning</p>
</div>
</div>
</div>
<!-- SUCCESS STEP-1 START -->
<div class="row">
<div class="col-xl-6 col-lg-6">
<div class="rts-success_steps__image d-flex justify-content-lg-start justify-content-sm-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 280 230" width="280" height="230"
preserveAspectRatio="xMidYMid meet"
style="width: 60%; height: auto; transform: translate3d(0px, 0px, 0px); content-visibility: visible; max-width: 100%;">
<defs>
<clipPath id="__lottie_element_2">
<rect width="280" height="230" x="0" y="0"></rect>
</clipPath>
<clipPath id="__lottie_element_37">
<path d="M0,0 L280,0 L280,230 L0,230z"></path>
</clipPath>
</defs>
<g clip-path="url(#__lottie_element_2)">
<g transform="matrix(1,0,0,1,0,0)" opacity="1" style="display: block;">
<rect width="280" height="230" fill="#ffffff"></rect>
</g>
<g transform="matrix(1,0,0,1,-4.8350067138671875,-42.592002868652344)" opacity="1"
style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,144.8350067138672,155.37100219726562)">
<path fill="rgb(241,241,241)" fill-opacity="1"
d=" M-99.08100128173828,71.0780029296875 C-144.58399963378906,31.763999938964844 -134.572998046875,-27.687000274658203 -81.79000091552734,-44.94599914550781 C-29.611000061035156,-62.007999420166016 -15.16100025177002,-29.753999710083008 25.389999389648438,-69.78099822998047 C111.84500122070312,-155.12100219726562 171,15.222000122070312 72.00800323486328,77.79000091552734 C16.652999877929688,112.77799987792969 -63.191001892089844,102.08699798583984 -99.08100128173828,71.0780029296875z">
</path>
</g>
<g opacity="1" transform="matrix(1,0,0,1,105.68099975585938,212.8070068359375)">
<path fill="rgb(215,215,215)" fill-opacity="1"
d=" M38.30699920654297,-0.09099999815225601 C38.30699920654297,6.604000091552734 15.890999794006348,16.785999298095703 -0.847000002861023,16.785999298095703 C-17.584999084472656,16.785999298095703 -38.30799865722656,-3.3959999084472656 -38.30799865722656,-10.090999603271484 C-38.30799865722656,-16.785999298095703 -8.73900032043457,-2.2139999866485596 7.999000072479248,-2.2139999866485596 C24.738000869750977,-2.2139999866485596 38.30699920654297,-6.785999774932861 38.30699920654297,-0.09099999815225601z">
</path>
</g>
<g opacity="1" transform="matrix(1,0,0,1,151.3350067138672,217.45399475097656)">
<path fill="rgb(215,215,215)" fill-opacity="1"
d=" M35.96200180053711,0 C35.96200180053711,7.943999767303467 19.860000610351562,14.385000228881836 -0.0010000000474974513,14.385000228881836 C-19.86199951171875,14.385000228881836 -35.96200180053711,7.943999767303467 -35.96200180053711,0 C-35.96200180053711,-7.943999767303467 -19.86199951171875,-14.385000228881836 -0.0010000000474974513,-14.385000228881836 C19.860000610351562,-14.385000228881836 35.96200180053711,-7.943999767303467 35.96200180053711,0z">
</path>
</g>
</g>
<g clip-path="url(#__lottie_element_37)" transform="matrix(1,0,0,1,0,0)" opacity="1"
style="display: block;">
<g transform="matrix(1,0,0,1,140,115)" opacity="1" style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0"
stroke-miterlimit="4" stroke="rgb(213,191,227)" stroke-opacity="1"
stroke-width="2"
d=" M124.25,-55 C124.25,-55 -64.5,-65 -64.5,-65 C-64.5,-65 -118,36 -118,36 C-118,36 -43.75,103.75 -43.75,103.75 C-43.75,103.75 84.5,56.75 84.5,56.75 C84.5,56.75 124.25,-55 124.25,-55z">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,140,115)" opacity="1" style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0"
stroke-miterlimit="4" stroke="rgb(213,191,227)" stroke-opacity="1"
stroke-width="2"
d=" M124,-55 C124,-55 3.2360000610351562,-8.678000450134277 3.2360000610351562,-8.678000450134277 C3.2360000610351562,-8.678000450134277 -43.5,105 -43.5,105">
</path>
</g>
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0"
stroke-miterlimit="4" stroke="rgb(213,191,227)" stroke-opacity="1"
stroke-width="2"
d=" M-64.75,-64.5 C-64.75,-64.5 3.5,-9 3.5,-9 C3.5,-9 85.25,57.5 85.25,57.5">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,140,115)" opacity="1" style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0"
stroke-miterlimit="4" stroke="rgb(213,191,227)" stroke-opacity="1"
stroke-width="2" d=" M-117,35.75 C-117,35.75 3.5,-9.5 3.5,-9.5"></path>
</g>
</g>
<g transform="matrix(1,0,0,1,140,115)" opacity="1" style="display: none;">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0"
stroke-miterlimit="4" stroke="rgb(164,94,207)" stroke-opacity="1"
stroke-width="2"
d=" M119.80500030517578,-42.52000045776367 C122.3479995727539,-49.66999816894531 124.01399993896484,-54.35499954223633 124.22200012207031,-54.93899917602539">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,140,115)" opacity="1" style="display: none;">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0"
stroke-miterlimit="4" stroke="rgb(164,94,207)" stroke-opacity="1"
stroke-width="2"
d=" M-38.691001892089844,93.31199645996094 C-41.53200149536133,100.22200012207031 -43.34700012207031,104.63700103759766 -43.48699951171875,104.97699737548828">
</path>
</g>
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0"
stroke-miterlimit="4" stroke="rgb(164,94,207)" stroke-opacity="1"
stroke-width="2"
d=" M77.73699951171875,51.38399887084961 C82.2030029296875,55.01599884033203 85.01799774169922,57.305999755859375 85.23699951171875,57.48500061035156">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,93.49600219726562,215.49600219726562)" opacity="1"
style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,2.878999948501587,2.878999948501587)">
<path fill="rgb(212,190,226)" fill-opacity="1"
d=" M2.4860000610351562,0.257999986410141 C2.3440001010894775,1.63100004196167 1.1160000562667847,2.628999948501587 -0.257999986410141,2.486999988555908 C-1.63100004196167,2.3450000286102295 -2.628999948501587,1.1160000562667847 -2.486999988555908,-0.257999986410141 C-2.3450000286102295,-1.63100004196167 -1.1169999837875366,-2.628999948501587 0.25699999928474426,-2.4860000610351562 C1.63100004196167,-2.3450000286102295 2.628999948501587,-1.1160000562667847 2.4860000610351562,0.257999986410141z">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,227.19700622558594,35.606998443603516)" opacity="1"
style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,2.878999948501587,2.878999948501587)">
<path fill="rgb(212,190,226)" fill-opacity="1"
d=" M2.486999988555908,0.257999986410141 C2.3440001010894775,1.63100004196167 1.1150000095367432,2.628999948501587 -0.257999986410141,2.486999988555908 C-1.63100004196167,2.3450000286102295 -2.628999948501587,1.1160000562667847 -2.48799991607666,-0.257999986410141 C-2.3450000286102295,-1.63100004196167 -1.1160000562667847,-2.628999948501587 0.257999986410141,-2.4860000610351562 C1.6319999694824219,-2.3440001010894775 2.628999948501587,-1.1150000095367432 2.486999988555908,0.257999986410141z">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,210.12100219726562,205.62100219726562)" opacity="1"
style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,2.878999948501587,2.878999948501587)">
<path fill="rgb(212,190,226)" fill-opacity="1"
d=" M2.4860000610351562,0.25699999928474426 C2.3440001010894775,1.63100004196167 1.1150000095367432,2.628999948501587 -0.257999986410141,2.4860000610351562 C-1.63100004196167,2.3440001010894775 -2.628999948501587,1.1150000095367432 -2.486999988555908,-0.257999986410141 C-2.3450000286102295,-1.63100004196167 -1.1160000562667847,-2.628999948501587 0.25699999928474426,-2.486999988555908 C1.63100004196167,-2.3450000286102295 2.628999948501587,-1.1160000562667847 2.4860000610351562,0.25699999928474426z">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,19.621000289916992,147.62100219726562)" opacity="1"
style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,2.878999948501587,2.878999948501587)">
<path fill="rgb(212,190,226)" fill-opacity="1"
d=" M2.4860000610351562,0.257999986410141 C2.3440001010894775,1.63100004196167 1.1150000095367432,2.628999948501587 -0.257999986410141,2.486999988555908 C-1.63100004196167,2.3450000286102295 -2.628999948501587,1.1160000562667847 -2.486999988555908,-0.257999986410141 C-2.3450000286102295,-1.63100004196167 -1.1160000562667847,-2.628999948501587 0.25699999928474426,-2.4860000610351562 C1.63100004196167,-2.3450000286102295 2.628999948501587,-1.1160000562667847 2.4860000610351562,0.257999986410141z">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,72.12100219726562,46.62099838256836)" opacity="1"
style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,2.878999948501587,2.878999948501587)">
<path fill="rgb(212,190,226)" fill-opacity="1"
d=" M2.4860000610351562,0.257999986410141 C2.3440001010894775,1.63100004196167 1.1150000095367432,2.628999948501587 -0.257999986410141,2.486999988555908 C-1.63100004196167,2.3450000286102295 -2.628999948501587,1.1160000562667847 -2.486999988555908,-0.257999986410141 C-2.3450000286102295,-1.63100004196167 -1.1160000562667847,-2.628999948501587 0.25699999928474426,-2.4860000610351562 C1.63100004196167,-2.3450000286102295 2.628999948501587,-1.1160000562667847 2.4860000610351562,0.257999986410141z">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,260.51800537109375,56.612998962402344)" opacity="1"
style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,2.878000020980835,2.878999948501587)">
<path fill="rgb(212,190,226)" fill-opacity="1"
d=" M2.486999988555908,0.25699999928474426 C2.3450000286102295,1.63100004196167 1.1150000095367432,2.628000020980835 -0.257999986410141,2.4860000610351562 C-1.63100004196167,2.3440001010894775 -2.628999948501587,1.1150000095367432 -2.486999988555908,-0.257999986410141 C-2.3450000286102295,-1.63100004196167 -1.1150000095367432,-2.628000020980835 0.257999986410141,-2.4860000610351562 C1.63100004196167,-2.3440001010894775 2.628999948501587,-1.1160000562667847 2.486999988555908,0.25699999928474426z">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,221.54100036621094,168.68800354003906)" opacity="1"
style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,2.878000020980835,2.878999948501587)">
<path fill="rgb(212,190,226)" fill-opacity="1"
d=" M2.486999988555908,0.25699999928474426 C2.3440001010894775,1.6299999952316284 1.1150000095367432,2.628000020980835 -0.257999986410141,2.4860000610351562 C-1.6319999694824219,2.3429999351501465 -2.628999948501587,1.1150000095367432 -2.48799991607666,-0.257999986410141 C-2.3450000286102295,-1.63100004196167 -1.1160000562667847,-2.628000020980835 0.257999986410141,-2.4860000610351562 C1.63100004196167,-2.3440001010894775 2.628999948501587,-1.1169999837875366 2.486999988555908,0.25699999928474426z">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,21.621000289916992,104.62100219726562)" opacity="1"
style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,2.878999948501587,2.878999948501587)">
<path fill="rgb(212,190,226)" fill-opacity="1"
d=" M2.4860000610351562,0.25699999928474426 C2.3440001010894775,1.63100004196167 1.1160000562667847,2.628999948501587 -0.257999986410141,2.4860000610351562 C-1.63100004196167,2.3440001010894775 -2.628999948501587,1.1150000095367432 -2.486999988555908,-0.257999986410141 C-2.3450000286102295,-1.63100004196167 -1.1169999837875366,-2.628999948501587 0.25699999928474426,-2.486999988555908 C1.63100004196167,-2.3450000286102295 2.628999948501587,-1.1160000562667847 2.4860000610351562,0.25699999928474426z">
</path>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,88.88999938964844,20.964996337890625)" opacity="1"
style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,68.35299682617188,80.10900115966797)">
<path fill="rgb(46,19,64)" fill-opacity="1"
d=" M68.10299682617188,26.281999588012695 C68.10299682617188,26.281999588012695 -38.0369987487793,-79.85900115966797 -38.0369987487793,-79.85900115966797 C-67.76399993896484,-50.13199996948242 -68.10299682617188,-2.2730000019073486 -38.792999267578125,27.03700065612793 C-36.72600173950195,29.104000091552734 -34.55799865722656,31.006999969482422 -32.31999969482422,32.77899932861328 C-32.31999969482422,32.77899932861328 -32.31999969482422,70.09300231933594 -32.31999969482422,70.09300231933594 C-32.31999969482422,70.09300231933594 -32.11199951171875,70.09300231933594 -32.11199951171875,70.09300231933594 C-32.23400115966797,70.46499633789062 -32.31999969482422,70.84300231933594 -32.31999969482422,71.22799682617188 C-32.31999969482422,75.99500274658203 -22.659000396728516,79.85900115966797 -10.743000030517578,79.85900115966797 C1.1740000247955322,79.85900115966797 10.833999633789062,75.99500274658203 10.833999633789062,71.22799682617188 C10.833999633789062,70.84300231933594 10.74899959564209,70.46499633789062 10.62600040435791,70.09300231933594 C10.62600040435791,70.09300231933594 10.833999633789062,70.09300231933594 10.833999633789062,70.09300231933594 C10.833999633789062,70.09300231933594 10.833999633789062,48.73500061035156 10.833999633789062,48.73500061035156 C31.374000549316406,49.58100128173828 52.29999923706055,42.084999084472656 68.10299682617188,26.281999588012695z">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,89.41699981689453,20.96500015258789)" opacity="1"
style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,19,37.641998291015625)">
<path fill="rgb(86,36,116)" fill-opacity="1"
d=" M7.416999816894531,6.559000015258789 C18.75,35.058998107910156 13.083999633789062,37.391998291015625 7.416999816894531,37.058998107910156 C-15.409000396728516,35.71699905395508 -18.75,-7.107999801635742 10.788999557495117,-37.391998291015625">
</path>
</g>
</g>
<g transform="matrix(1,0,0,1,102.20800018310547,4.217002868652344)" opacity="1"
style="display: block;">