-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
1760 lines (1584 loc) · 62.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
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
<<<<<<< HEAD
<!--
███████╗███████╗██████╗ ██╗ ██╗███████╗██████╗ ██╗ ██╗██╗ ██╗██████╗
██╔════╝██╔════╝██╔══██╗██║ ██║██╔════╝██╔══██╗██║ ██║██║ ██║██╔══██╗
███████╗█████╗ ██████╔╝██║ ██║█████╗ ██████╔╝███████║██║ ██║██████╔╝
╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██╔══╝ ██╔══██╗██╔══██║██║ ██║██╔══██╗
███████║███████╗██║ ██║ ╚████╔╝ ███████╗██║ ██║██║ ██║╚██████╔╝██████╔╝
╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═════╝
-->
<!DOCTYPE html>
<html>
<head>
<title>ServerHub - Dedicated Servers, Rental Services, Web Hosting, Virtual Private Servers and Infrastructure as a Service (IaaS)</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="title" content="ServerHub | Dedicated Servers, VPS Hosting, Web Hosting and Infrastructure as a Service (IaaS) - Built on the ServerHub Platform | Storage and Networking products on rent!">
<meta name="description" content="Dedicated Servers, VPS Hosting, Web Hosting, Server Colocation and Enterprise Class Hosting by ServerHub Call Us ON +91-8870855940">
<meta name="author" content="Vinit Shahdeo">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="https://www.serverhub.com/themes/serverhub/assets/images/serverhub.png" />
<meta property="og:type" content="website" />
<meta property="og:title" content="ServerHub - Rental Services" />
<meta property="og:description" content="Dedicated Servers, Laptops, Desktops on rent | Storage and Networking products on rent!" />
<meta property="og:image" content="http://serverhub.co.in/serverhub.jpg" />
<meta property="og:url" content="serverhub.co.in" />
<meta property="og:site_name" content="ServerHub - Rental Services" />
<!--//tags -->
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/contact.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/font-awesome.css" rel="stylesheet">
<!-- //for bootstrap working -->
<link href="//fonts.googleapis.com/css?family=Raleway:100,100i,200,300,300i,400,400i,500,500i,600,600i,700,800" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,600,600i,700" rel="stylesheet">
</head>
<body>
<div class="top_header" id="home">
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="nav_top_fx_w3ls_agileinfo">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false"
aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="logo-w3layouts-agileits">
<h1> <a class="navbar-brand" href="index.html"><i class="fa fa-clone" aria-hidden="true"></i> ServerHub<span class="desc">Rental Services</span></a></h1>
</div>
</div>
<div id="navbar" class="navbar-collapse collapse">
<div class="nav_right_top">
<ul class="nav navbar-nav navbar-right">
<li><a class="request" href="contact.html">Request Demo</a></li>
</ul>
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#workss">Services</a></li>
<li class="active"><a href="contact.html">Contact</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Account<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="signin.html">Sign In</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</li>
</ul>
</div>
</div>
<!--/.nav-collapse -->
</div>
</nav>
</div>
<!--whatspp-->
<div class="bar_wpp">
<a href="https://web.whatsapp.com/send?phone=+918877359792&text=Hello ServerHub! I am interested in your service" title="Message on WhatsApp" target="_blank">
<div class="icon_wpp"> <i class="fa fa-whatsapp" aria-hidden="true"></i></div>
<div class="txt_wpp">
Message on WhatsApp
</div>
</a>
</div>
<!--whatspp-->
<!-- banner -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1" class=""></li>
<li data-target="#myCarousel" data-slide-to="2" class=""></li>
<li data-target="#myCarousel" data-slide-to="3" class=""></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<div class="container">
<div class="carousel-caption">
<h3>Build Effective Solutions</h3>
<p>Solutions made easy</p>
<div class="top-buttons">
<div class="bnr-button">
<a class="act" href="about.html">Read More</a>
</div>
<div class="bnr-button">
<a href="#workss" class="two scroll ">Services</a>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
<div class="item item2">
<div class="container">
<div class="carousel-caption">
<h3>Best Business Thinking</h3>
<p>You deserve the best</p>
<div class="top-buttons">
<div class="bnr-button">
<a class="act" href="about.html">Read More</a>
</div>
<div class="bnr-button">
<a href="#workss" class="two scroll ">Services</a>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
<div class="item item3">
<div class="container">
<div class="carousel-caption">
<h3>Rental Services</h3>
<p>A complete range of IT Equipment readily available for meeting the business needs for any duration, may it be for...</p>
<div class="top-buttons">
<div class="bnr-button">
<a class="act" href="about.html">Read More</a>
</div>
<div class="bnr-button">
<a href="#workss" class="two scroll ">Services</a>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
<div class="item item4">
<div class="container">
<div class="carousel-caption">
<h3>Web & App Development</h3>
<p>We are group of highly skilled developers who strives to marry the technology.</p>
<div class="top-buttons">
<div class="bnr-button">
<a class="act" href="about.html">Read More</a>
</div>
<div class="bnr-button">
<a href="#workss" class="two scroll ">Services</a>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="fa fa-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="fa fa-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
<!-- The Modal -->
</div>
<!--//banner -->
<!--/ab-->
<div class="banner_bottom">
<div class="container">
<h3 class="tittle-w3ls">About Us</h3>
<div class="inner_sec_info_wthree_agile">
<div class="help_full">
<!--<div class="col-md-6 banner_bottom_grid help">
<img src="images/ab.png" alt=" " class="img-responsive">
</div>-->
<div class="col-md-12 banner_bottom_left">
<h4 align="center">Working to build a better solution!</h4>
<p align="justify">
We, “ServerHub”, are widely acknowledged as an eminent IT sales, Rental Services, AMC, On call services of a commendable range of HP, SUN, IBM & DELL Servers and Spare Parts. Under the offered range, we provide HP Integrity Servers, HP Proliant Rack Servers, HP Proliant Tower Servers, HP Proliant Blade Servers and IBM Systems X Servers. In addition to this, we provide Dell SC Power Edge Servers, HP Server Smart Array Raid Controller Card, HP Server Hard Disk Backplanes, Dell Workstation Server, HP Server Raid Controller Battery and HP Server Power Supply Backplane, to name a few. We source the offered servers and spare parts from the most prestigious vendors of the industry such as IBM and Dell so as to get relived on their quality front. The servers and spare parts are appreciated for their outstanding features like, durability, less maintenance, excellent performance and easy installation.</p>
<center><div class="ab_button">
<a class="btn btn-primary btn-lg hvr-underline-from-left" href="single.html" role="button">Read More </a>
</div></center>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="news-main">
<div class="row">
<div class="col-md-4 banner_bottom_left">
<div class="banner_bottom_pos">
<div class="banner_bottom_pos_grid">
<div class="col-xs-3 banner_bottom_grid_left">
<div class="banner_bottom_grid_left_grid">
<span class="fa fa-laptop" aria-hidden="true"></span>
</div>
</div>
<div class="col-xs-9 banner_bottom_grid_right">
<h4>Laptops</h4>
<p>ServerHub customized laptops and branded laptops.</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<div class="col-md-4 banner_bottom_left">
<div class="banner_bottom_pos">
<div class="banner_bottom_pos_grid">
<div class="col-xs-3 banner_bottom_grid_left">
<div class="banner_bottom_grid_left_grid">
<span class="fa fa-archive" aria-hidden="true"></span>
</div>
</div>
<div class="col-xs-9 banner_bottom_grid_right">
<h4>Storage Products</h4>
<p>SAN, NAS, DAS, SDLT Drive, DAT drive, LTO tape Drive storages(LTO1,2,3,4,5,6)</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<div class="col-md-4 banner_bottom_left">
<div class="banner_bottom_pos">
<div class="banner_bottom_pos_grid">
<div class="col-xs-3 banner_bottom_grid_left">
<div class="banner_bottom_grid_left_grid">
<span class="fa fa-server" aria-hidden="true"></span>
</div>
</div>
<div class="col-xs-9 banner_bottom_grid_right">
<h4>Servers</h4>
<p>Customized and branded servers available at optimal rate.</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 banner_bottom_left">
<div class="banner_bottom_pos">
<div class="banner_bottom_pos_grid">
<div class="col-xs-3 banner_bottom_grid_left">
<div class="banner_bottom_grid_left_grid">
<span class="fa fa-desktop" aria-hidden="true"></span>
</div>
</div>
<div class="col-xs-9 banner_bottom_grid_right">
<h4>Desktops</h4>
<p>ServerHub customized desktops and branded desktops.</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<div class="col-md-4 banner_bottom_left">
<div class="banner_bottom_pos">
<div class="banner_bottom_pos_grid">
<div class="col-xs-3 banner_bottom_grid_left">
<div class="banner_bottom_grid_left_grid">
<span class="fa fa-wifi" aria-hidden="true"></span>
</div>
</div>
<div class="col-xs-9 banner_bottom_grid_right">
<h4>Networking Products</h4>
<p>Router and Switches available at minimal price for rent.</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<div class="col-md-4 banner_bottom_left">
<div class="banner_bottom_pos">
<div class="banner_bottom_pos_grid">
<div class="col-xs-3 banner_bottom_grid_left">
<div class="banner_bottom_grid_left_grid">
<span class="fa fa-apple" aria-hidden="true"></span>
</div>
</div>
<div class="col-xs-9 banner_bottom_grid_right">
<h4>Apple Products</h4>
<p>Apple Systems and other IT equipments are available on demand.</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<!--//ab-->
<!--/what-->
<div class="works" id="workss">
<div class="container">
<h3 class="tittle-w3ls cen">What else we do</h3>
<div class="inner_sec_info_wthree_agile">
<div class="ser-first">
<div class="col-md-3 ser-first-grid text-center">
<span class="fa fa-desktop" aria-hidden="true"></span>
<h3>Web Development</h3>
<p>We deal with high level dynamic websites that can fetch more revenue. We develop websites that embrace exact functional database logic.</p>
</div>
<div class="col-md-3 ser-first-grid text-center">
<span class="fa fa-mobile" aria-hidden="true"></span>
<h3>App Development</h3>
<p>We develop smart phone applications for Android and iOS that users love to get their fingers rolled on it again and again. Contact s for all kinds of app development.</p>
</div>
<div class="col-md-3 ser-first-grid text-center">
<span class="fa fa-users" aria-hidden="true"></span>
<h3>Digital Marketing</h3>
<p>We deliver bespoke social media services, designed to delight your audience. SEO, SMM and Email- Marketing services are available.</p>
</div>
<div class="col-md-3 ser-first-grid text-center">
<span class="fa fa-code" aria-hidden="true"></span>
<h3>Software Development</h3>
<p>We develop all kinds of softwares. Not just software developers. We're problem solvers. Get your software ready at best price available in the market.</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
<!--//what-->
<!--/banner_bottom-->
<div class="banner_bottom">
<div class="banner_bottom_in">
<h3 class="tittle-w3ls we">We provide high quality and cost effective offshore web development services.</h3>
<p>Our web developers use Cutting-Edge Technology and Top-Notch Hosting Solutions to grow up your business.</p>
<img src="images/banner_mid.jpg" class="img-responsive" alt="">
</div>
</div>
<!--//banner_bottom-->
<!--/projects-->
<!--
<div class="banner_bottom proj">
<div class="wrap_view">
<h3 class="tittle-w3ls">Projects</h3>
<div class="inner_sec">
<ul class="portfolio-categ filter">
<li class="port-filter all active">
<a href="#">All</a>
</li>
<li class="cat-item-1">
<a href="#" title="Category 1">Category 1</a>
</li>
<li class="cat-item-2">
<a href="#" title="Category 2">Category 2</a>
</li>
<li class="cat-item-3">
<a href="#" title="Category 3">Category 3</a>
</li>
<li class="cat-item-4">
<a href="#" title="Category 4">Category 4</a>
</li>
</ul>
<ul class="portfolio-area">
<li class="portfolio-item2" data-id="id-0" data-type="cat-item-4">
<div>
<span class="image-block img-hover">
<a class="image-zoom" href="images/g1.jpg" rel="prettyPhoto[gallery]">
<img src="images/g1.jpg" class="img-responsive" alt="Conceit">
<div class="port-info">
<h5>View Project</h5>
<p>Add Some Description</p>
</div>
</a>
</span>
</div>
</li>
<li class="portfolio-item2" data-id="id-1" data-type="cat-item-2">
<div>
<span class="image-block">
<a class="image-zoom" href="images/g2.jpg" rel="prettyPhoto[gallery]">
<img src="images/g2.jpg" class="img-responsive" alt="Conceit">
<div class="port-info">
<h5>View Project</h5>
<p>Add Some Description</p>
</div>
</a>
</span>
</div>
</li>
<li class="portfolio-item2" data-id="id-2" data-type="cat-item-1">
<div>
<span class="image-block">
<a class="image-zoom" href="images/g3.jpg" rel="prettyPhoto[gallery]">
<img src="images/g3.jpg" class="img-responsive" alt="Conceit">
<div class="port-info">
<h5>View Project</h5>
<p>Add Some Description</p>
</div>
</a>
</span>
</div>
</li>
<li class="portfolio-item2" data-id="id-3" data-type="cat-item-4">
<div>
<span class="image-block">
<a class="image-zoom" href="images/g4.jpg" rel="prettyPhoto[gallery]">
<img src="images/g4.jpg" class="img-responsive" alt="Conceit">
<div class="port-info">
<h5>View Project</h5>
<p>Add Some Description</p>
</div>
</a>
</span>
</div>
</li>
<li class="portfolio-item2" data-id="id-4" data-type="cat-item-3">
<div>
<span class="image-block">
<a class="image-zoom" href="images/g5.jpg" rel="prettyPhoto[gallery]">
<img src="images/g5.jpg" class="img-responsive" alt="Conceit">
<div class="port-info">
<h5>View Project</h5>
<p>Add Some Description</p>
</div>
</a>
</span>
</div>
</li>
<li class="portfolio-item2" data-id="id-5" data-type="cat-item-2">
<div>
<span class="image-block">
<a class="image-zoom" href="images/g6.jpg" rel="prettyPhoto[gallery]">
<img src="images/g6.jpg" class="img-responsive" alt="Conceit">
<div class="port-info">
<h5>View Project</h5>
<p>Add Some Description</p>
</div>
</a>
</span>
</div>
</li>
<li class="portfolio-item2" data-id="id-6" data-type="cat-item-1">
<div>
<span class="image-block">
<a class="image-zoom" href="images/g7.jpg" rel="prettyPhoto[gallery]">
<img src="images/g7.jpg" class="img-responsive" alt="Conceit">
<div class="port-info">
<h5>View Project</h5>
<p>Add Some Description</p>
</div>
</a>
</span>
</div>
</li>
<li class="portfolio-item2" data-id="id-7" data-type="cat-item-1">
<div>
<span class="image-block">
<a class="image-zoom" href="images/g8.jpg" rel="prettyPhoto[gallery]">
<img src="images/g8.jpg" class="img-responsive" alt="Conceit">
<div class="port-info">
<h5>View Project</h5>
<p>Add Some Description</p>
</div>
</a>
</span>
</div>
</li>
<div class="clearfix"></div>
</ul>
-->
<!--end portfolio-area -->
<!--</div></div></div>-->
<!--//projects-->
<!--/blog-->
<div class="blog_sec">
<h3 class="tittle-w3ls">Latest Works</h3>
<div class="col-md-6 banner-btm-left">
<div class="banner-btm-top">
<div class="banner-btm-inner a1">
<div class="blog_date">
<h4>Jan.05.2018</h4>
</div>
<h6><a href="https://vinitshahdeo.github.io/CodeChefVIT/" target="_blank">CodeChef VIT Chapter</a></h6>
<p class="paragraph">Development of official website of student chapter in VIT University, Vellore.</p>
<div class="clearfix"></div>
<a href="https://vinitshahdeo.github.io/CodeChefVIT/" target="_blank" class="blog-btn">View Our Work</a>
</div>
<div class="banner-btm-inner a2">
</div>
</div>
<div class="banner-btm-bottom">
<div class="banner-btm-inner a3">
</div>
<div class="banner-btm-inner a4">
<div class="blog_date">
<h4>May.12.2018</h4>
</div>
<h6><a href="http://starein.com/" target="_blank">StareIN</a></h6>
<p class="paragraph">StareIn - Quick Food Ordering And Payment Inside Restaurant</p>
<div class="clearfix"></div>
<a href="http://starein.com/" class="blog-btn">View Our Work</a>
</div>
</div>
</div>
<div class="col-md-6 banner-btm-left">
<div class="banner-btm-top">
<div class="banner-btm-inner a1">
<div class="blog_date">
<h4>Oct.25.2018</h4>
</div>
<h6><a href="http://shreyaanand.co.in/" target="_blank">Digital Resume</a></h6>
<p class="paragraph">Desing a digital resume for fresher's hiring. Resume/CV for campus recruitment.</p>
<div class="clearfix"></div>
<a href="http://shreyaanand.co.in/" target="_blank" class="blog-btn">View Our Work</a>
</div>
<div class="banner-btm-inner a5">
</div>
</div>
<div class="banner-btm-bottom">
<div class="banner-btm-inner a6">
</div>
<div class="banner-btm-inner a4">
<div class="blog_date">
<h4>Dec.11.2017</h4>
</div>
<h6><a href="https://github.com/vinitshahdeo/CodeCombat" target="_blank">Code Combat</a></h6>
<p class="paragraph">Code Combat, an amalgamation of gaming and coding. An annual premium event by CodeChef VIT.
</p>
<div class="clearfix"></div>
<a href="https://vinitshahdeo.github.io/CodeCombat/" target="_blank" class="blog-btn">View Our Work</a>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<!--//blog-->
<!--/bottom-->
<div class="banner_bottom">
<div class="container">
<h3 class="tittle-w3ls">Let’s Change How We Manage Business
</h3>
<div class="inner_sec_info_wthree_agile">
<div class="help_full">
<div class="col-md-6 banner_bottom_left">
<h4>Get all kinds of IT equipments!</h4>
<p>
What makes us stand different from others is our team-work. The Consistency & Dedication of the team together made the company from ground up to provide highest level of technical services to the business houses, government organizations and individuals. We help Students & Corporate Associates acquire knowledge & technical skills, which is not a part of our regular curriculum but, is greatly required in Technical and Corporate World.
</p>
<div class="ab_button">
<a class="btn btn-primary btn-lg hvr-underline-from-left" href="about.html" role="button">Read More </a>
</div>
</div>
<div class="col-md-6 banner_bottom_grid help">
<img src="images/vinit-shahdeo-codechef-vit.jpg" alt=" " class="img-responsive">
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
<!--//bottom-->
<!--/testimonials-->
<div class="tesimonials">
<div class="container">
<h3 class="tittle-w3ls cen">Testimonials</h3>
<div class="inner_sec">
<div class="test_grid_sec">
<div class="col-md-offset-2 col-md-8">
<div class="carousel slide two" data-ride="carousel" id="quote-carousel">
<!-- Bottom Carousel Indicators -->
<ol class="carousel-indicators two">
<li data-target="#quote-carousel" data-slide-to="0" class="active"></li>
<li data-target="#quote-carousel" data-slide-to="1"></li>
<li data-target="#quote-carousel" data-slide-to="2"></li>
</ol>
<!-- Carousel Slides / Quotes -->
<div class="carousel-inner">
<!-- Quote 1 -->
<div class="item active">
<blockquote>
<div class="test_grid">
<div class="col-sm-3 text-center test_img">
<img src="images/archit.jpg" class="img-responsive" alt="">
</div>
<div class="col-sm-9 test_img_info">
<p>I have been with Server Hub for well over a year now and expect to be with them for far longer. They provide great customer support, impressive equipment, and great value.</p>
<h6>Archit Roy</h6>
</div>
</div>
</blockquote>
</div>
<!-- Quote 2 -->
<div class="item">
<blockquote>
<div class="test_grid">
<div class="col-sm-3 text-center test_img">
<img src="images/shreya.jpeg" class="img-responsive" alt="">
</div>
<div class="col-sm-9 test_img_info">
<p>I got my portfolio done here. These people are amazing at their work. Their website designs are really cool. Quite Impressive!!</p>
<h6>Shreya Anand</h6>
</div>
</div>
</blockquote>
</div>
<!-- Quote 3 -->
<div class="item">
<blockquote>
<div class="test_grid">
<div class="col-sm-3 text-center test_img">
<img src="images/ratnesh.jpg" class="img-responsive" alt="">
</div>
<div class="col-sm-9 test_img_info">
<p>We have been with many hosts over the past few years and none has impressed me as much as Serverhub.</p>
<h6>Ratnesh Kanungo</h6>
</div>
</div>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--//testimonials-->
<!-- /newsletter-->
<div class="newsletter_w3ls_agileits">
<div class="col-sm-6 newsleft">
<h3>Sign up for Newsletter !</h3>
</div>
<div class="col-sm-6 newsright">
<form action="#" method="post">
<input type="email" placeholder="Enter your email..." name="email" required="">
<input type="submit" value="Submit">
</form>
</div>
<div class="clearfix"></div>
</div>
<!-- //newsletter-->
<!-- footer -->
<div class="footer">
<div class="footer_inner_info_w3ls_agileits">
<div class="col-md-3 footer-left">
<h2><a href="index.html"><i class="fa fa-clone" aria-hidden="true"></i> ServerHub </a></h2>
<p>All kinds of rental services on various IT equipments at optimal price.</p>
<ul class="social-nav model-3d-0 footer-social social two">
<li>
<a href="#" class="facebook">
<div class="front"><i class="fa fa-facebook" aria-hidden="true"></i></div>
<div class="back"><i class="fa fa-facebook" aria-hidden="true"></i></div>
</a>
</li>
<li>
<a href="#" class="twitter">
<div class="front"><i class="fa fa-twitter" aria-hidden="true"></i></div>
<div class="back"><i class="fa fa-twitter" aria-hidden="true"></i></div>
</a>
</li>
<li>
<a href="#" class="instagram">
<div class="front"><i class="fa fa-instagram" aria-hidden="true"></i></div>
<div class="back"><i class="fa fa-instagram" aria-hidden="true"></i></div>
</a>
</li>
<li>
<a href="#" class="pinterest">
<div class="front"><i class="fa fa-linkedin" aria-hidden="true"></i></div>
<div class="back"><i class="fa fa-linkedin" aria-hidden="true"></i></div>
</a>
</li>
</ul>
</div>
<div class="col-md-9 footer-right">
<div class="sign-grds">
<div class="col-md-4 sign-gd">
<h4>Latest <span>Info</span> </h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="404.html">Sign up</a></li>
<li><a href="signin.html">Sign in</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="col-md-3 sign-gd flickr-post">
<h4>Our <span>Services</span></h4>
<ol style="color: #fff; opacity: 0.7">
<li>Laptops</li>
<li>Desktops</li>
<li>Storage Prodcuts</li>
<li>Networking Products</li>
<li>Servers</li>
</ol>
</div>
<div class="col-md-5 sign-gd-two">
<h4>Contact <span>Information</span></h4>
<div class="address">
<div class="address-grid">
<div class="address-left">
<i class="fa fa-phone" aria-hidden="true"></i>
</div>
<div class="address-right">
<h6>Phone Number</h6>
<p>+91-8877359792</p>
</div>
<div class="clearfix"> </div>
</div>
<div class="address-grid">
<div class="address-left">
<i class="fa fa-envelope" aria-hidden="true"></i>
</div>
<div class="address-right">
<h6>Email Address</h6>
<p>Email :<a href="mailto:[email protected]"> [email protected]</a></p>
</div>
<div class="clearfix"> </div>
</div>
<div class="address-grid">
<div class="address-left">
<i class="fa fa-map-marker" aria-hidden="true"></i>
</div>
<div class="address-right">
<h6>Location</h6>
<p>Near All Mart Gate, Katpadi, Vellore - 632014
</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="clearfix"></div>
<p class="copy-right">© 2018 ServerHub. All rights reserved <!--| Design by <a href="#">Vinit Shahdeo</a>--></p>
</div>
</div>
<!-- //footer -->
<script type="text/javascript" src="js/jquery-2.2.3.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script>
$('ul.dropdown-menu li').hover(function () {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeIn(500);
}, function () {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeOut(500);
});
</script>
<!-- js -->
<!-- Smooth-Scrolling-JavaScript -->
<script type="text/javascript" src="js/easing.js"></script>
<script type="text/javascript" src="js/move-top.js"></script>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$(".scroll, .navbar li a, .footer li a").click(function (event) {
$('html,body').animate({
scrollTop: $(this.hash).offset().top
}, 1000);
});
});
</script>
<!-- //Smooth-Scrolling-JavaScript -->
<script type="text/javascript">
$(document).ready(function () {
/*
var defaults = {
containerID: 'toTop', // fading element id
containerHoverID: 'toTopHover', // fading element hover id
scrollSpeed: 1200,
easingType: 'linear'
};
*/
$().UItoTop({
easingType: 'easeOutQuart'
});
});
</script>
<a href="#home" class="scroll" id="toTop" style="display: block;"> <span id="toTopHover" style="opacity: 1;"> </span></a>
<!-- jQuery-Photo-filter-lightbox-Gallery-plugin -->
<script type="text/javascript" src="js/jquery-1.7.2.js"></script>
<script src="js/jquery.quicksand.js" type="text/javascript"></script>
<script src="js/script.js" type="text/javascript"></script>
<script src="js/jquery.prettyPhoto.js" type="text/javascript"></script>
<!-- //jQuery-Photo-filter-lightbox-Gallery-plugin -->
</body>
<!-- Made by Vinit Shahdeo -->
=======
<!--
███████╗███████╗██████╗ ██╗ ██╗███████╗██████╗ ██╗ ██╗██╗ ██╗██████╗
██╔════╝██╔════╝██╔══██╗██║ ██║██╔════╝██╔══██╗██║ ██║██║ ██║██╔══██╗
███████╗█████╗ ██████╔╝██║ ██║█████╗ ██████╔╝███████║██║ ██║██████╔╝
╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██╔══╝ ██╔══██╗██╔══██║██║ ██║██╔══██╗
███████║███████╗██║ ██║ ╚████╔╝ ███████╗██║ ██║██║ ██║╚██████╔╝██████╔╝
╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═════╝
-->
<!DOCTYPE html>
<html>
<head>
<title>ServerHub - Dedicated Servers, Rental Services, Web Hosting, Virtual Private Servers and Infrastructure as a Service (IaaS)</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="title" content="ServerHub | Dedicated Servers, VPS Hosting, Web Hosting and Infrastructure as a Service (IaaS) - Built on the ServerHub Platform | Storage and Networking products on rent!">
<meta name="description" content="Dedicated Servers, VPS Hosting, Web Hosting, Server Colocation and Enterprise Class Hosting by ServerHub Call Us ON +91-8870855940">
<meta name="author" content="Vinit Shahdeo">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="https://www.serverhub.com/themes/serverhub/assets/images/serverhub.png" />
<meta property="og:type" content="website" />
<meta property="og:title" content="ServerHub - Rental Services" />
<meta property="og:description" content="Dedicated Servers, Laptops, Desktops on rent | Storage and Networking products on rent!" />
<meta property="og:image" content="http://serverhub.co.in/serverhub.jpg" />
<meta property="og:url" content="serverhub.co.in" />
<meta property="og:site_name" content="ServerHub - Rental Services" />
<!--//tags -->
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/contact.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/font-awesome.css" rel="stylesheet">
<!-- //for bootstrap working -->
<link href="//fonts.googleapis.com/css?family=Raleway:100,100i,200,300,300i,400,400i,500,500i,600,600i,700,800" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,600,600i,700" rel="stylesheet">
</head>
<body>
<div class="top_header" id="home">
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="nav_top_fx_w3ls_agileinfo">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false"
aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="logo-w3layouts-agileits">
<h1> <a class="navbar-brand" href="index.html"><i class="fa fa-clone" aria-hidden="true"></i> ServerHub<span class="desc">Rental Services</span></a></h1>
</div>
</div>
<div id="navbar" class="navbar-collapse collapse">
<div class="nav_right_top">
<ul class="nav navbar-nav navbar-right">
<li><a class="request" href="contact.html">Request Demo</a></li>
</ul>
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#workss">Services</a></li>
<li class="active"><a href="contact.html">Contact</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Account<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="signin.html">Sign In</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</li>
</ul>
</div>
</div>
<!--/.nav-collapse -->
</div>
</nav>
</div>
<!--whatspp-->
<div class="bar_wpp">
<a href="https://web.whatsapp.com/send?phone=+918877359792&text=Hello ServerHub! I am interested in your service" title="Message on WhatsApp" target="_blank">
<div class="icon_wpp"> <i class="fa fa-whatsapp" aria-hidden="true"></i></div>
<div class="txt_wpp">
Message on WhatsApp
</div>
</a>
</div>
<!--whatspp-->
<!-- banner -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1" class=""></li>
<li data-target="#myCarousel" data-slide-to="2" class=""></li>
<li data-target="#myCarousel" data-slide-to="3" class=""></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<div class="container">
<div class="carousel-caption">
<h3>Build Effective Solutions</h3>
<p>Solutions made easy</p>
<div class="top-buttons">
<div class="bnr-button">
<a class="act" href="about.html">Read More</a>
</div>
<div class="bnr-button">
<a href="#workss" class="two scroll ">Services</a>
</div>