-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1127 lines (975 loc) · 59.3 KB
/
index.html
File metadata and controls
1127 lines (975 loc) · 59.3 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>
<!--[if lt IE 7]>
<html class="no-js IE lt-ie9 lt-ie8 lt-ie7"></html>
<![endif]-->
<!--[if IE 7]>
<html class="no-js IE lt-ie9 lt-ie8"></html>
<![endif]-->
<!--[if IE 8]>
<html class="no-js IE lt-ie9"></html>
<![endif]-->
<!--[if gt IE 8]>
<html class="no-js IE gt-ie8"></html>
<![endif]-->
<!--[if !IE]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<!-- title -->
<title>Plus Hosting</title>
<!-- meta tags -->
<meta charset="utf-8">
<meta content="width=device-width,initial-scale=1,maximum-scale=1" name="viewport">
<meta content="Plus Hosting" name="description">
<!-- fav icon -->
<link href="images/favicon.ico" rel="shortcut icon">
<!-- css => style sheet -->
<link href="style.css" media="screen" rel="stylesheet" type="text/css">
<!-- css => responsive sheet -->
<link href="css/responsive.css" media="screen" rel="stylesheet" type="text/css">
<!-- JQuery => javascript libs -->
<script src="js/jquery.js" type="text/javascript"></script>
<!-- online JQuery libs -->
<!-- <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script> -->
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<!--[if lt IE 9]><!-->
<!-- css for ie -->
<link href="css/ie.css" media="screen" rel="stylesheet" type="text/css">
<!--<![endif]-->
<!-- google maps -->
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
</head>
<body id="top" class="style-4">
<!--[if lt IE 9]>
<p class="browsehappy">
You are using an
<strong>outdated</strong>
browser. Please
<a href="http://browsehappy.com/">upgrade your browser</a>
to improve your experience.
</p>
<![endif]-->
<div class="loadingContainer">
<div class="loading">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div><!-- end of loading -->
</div><!-- end of loading container -->
<div class="allWrapper">
<!-- Slider -->
<section class="slider section mainSection scrollAnchor darkSection" id="slider">
<div class="topMenu navBar">
<div class="container">
<div class="row">
<div class="topContact col-md-6 col-sm-12">
<ul>
<li class="tele">
Nazovi nas :
<a href="tele:0038552452052">+ 385 52 452 052</a>
</li>
<li class="mail">
Piši nam :
<a href="mailto:info@plus.hr">info@plus.hr</a>
</li>
</ul>
</div><!-- end of top contacts -->
<ul class="topSocial socialNav col-md-6 col-sm-12">
<li class="facebook"><a href="#"><i class="animated fa fa-facebook"></i></a></li>
<li class="twitter"><a href="#"><i class="animated fa fa-twitter"></i></a></li>
<li class="rss"><a href="#"><i class="animated fa fa-rss"></i></a></li>
<li class="lang">
<form method="POST" class="langForm">
<select name="language" id="language">
<option disabled="disabled" value="NoSeclect">Jezik</option>
<option value="En">English</option>
<option value="Hr">Hrvatski</option>
</select>
</form><!-- end of lang form -->
</li><!-- end of lang -->
</ul><!-- end of top social -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of top menu -->
<div id="mainSlider" class="mainSlider homeSlider_4 owl-carousel sliderStyle1">
<div id="slide1" class="item slide">
<div class="cover"></div><!-- end of cover -->
<img src="images/1400x783.png" title="Slide 1" alt="slide 1">
<div class="captions">
<h2 class="animated">Web Hosting</h2>
<h3 class="animated">Najveći web hosting provider u regiji sa više od 30 000 hostanih web siteova</h3>
<p class="animated">
Optimizirani hosting paketi za najzahtjevnije zadatke, sa naglaskom na stabilnost i performanse. Bazirano na vrhunskoj Cloud platformi.</p>
</div><!-- end of captions -->
</div><!-- end of slide -->
<div id="slide2" class="item slide">
<div class="cover"></div><!-- end of cover -->
<img src="images/1400x783.png" title="Slide 2" alt="slide 2">
<div class="captions">
<h2 class="animated">Registracija domena</h2>
<h3 class="animated">Najveći registrar domena u regiji sa preko 25 000 registriranih domena</h3>
<p class="animated">
Ukoliko u ovom trenutku nemate namjeru izraditi Internet stranice, registracijom vlastite domene osiguravate da www.mojaideja.com neće registrirati netko drugi.</p>
</div><!-- end of captions -->
</div><!-- end of slide -->
<div id="slide3" class="item slide">
<div class="cover"></div><!-- end of cover -->
<img src="images/1400x783.png" title="Slide 3" alt="slide 3">
<div class="captions">
<h2 class="animated">Ultra Mail serveri</h2>
<h3 class="animated">Vrhunski mail serveri sa višestrukom redudancijom i najboljim MailScanner sustavom u industriji.</h3>
<p class="animated">
Kroz godine iskustva naučili smo štititi svoje korisnike sustavom za sprečavanje neželjenih poruka i virusa koji će i Vama uštedjeti dragocjeno vrijeme.</p>
</div><!-- end of captions -->
</div><!-- end of slide -->
<div id="slide4" class="item slide">
<div class="cover"></div><!-- end of cover -->
<img src="images/1400x783.png" title="Slide 4" alt="slide 4">
<div class="captions">
<h2 class="animated">365 / 24 / 7 Korisnička podrška</h2>
<h3 class="animated"></h3>
<p class="animated">
Naši agenti korisničke podrške dostupni su uvijek telefonom, live chat uslugom ili putem vlastito razvijenog rješenja ticket sustava korisničke podrške.</p>
</div><!-- end of captions -->
</div><!-- end of slide -->
<div id="slide5" class="item slide">
<div class="cover"></div><!-- end of cover -->
<img src="images/1400x783.png" title="Slide 5" alt="slide 5">
<div class="captions">
<h2 class="animated">Besplatna migracija</h2>
<h3 class="animated">prilikom prelaska na naše servere migrirati ćemo hosting paket i sinkronizirati stanje mailova.</h3>
<p class="animated">
Imate već web i mailove kod drugog providera i potrebna Vam je pomoć kod migracije? Prebacujemo sve vaše podatke, slike, tekstove, blog postove, emailove, baze podataka na naše servere besplatno i bez prekida u radu.</p>
</div><!-- end of captions -->
</div><!-- end of slide -->
</div><!-- end of main slider -->
</section><!-- end of slider -->
<!-- Header -->
<header class="header headerStyle1" id="header">
<div class="sticky scrollHeaderWrapper">
<div class="container">
<div class="row">
<div class="logoWrapper">
<h1 class="logo">
<a class="clearfix" href="index.html" title="Plus Hosting">
<img class="text" src="images/logo-1.png" />
</a>
</h1><!-- end of logo -->
</div><!-- end of logoWrapper -->
<nav class="mainMenu mainNav" id="mainNav">
<ul class="navTabs">
<li>
<a href="index.html">Hosting</a>
<ul class="dropDown sub-menu">
<li><a href="web-hosting.html" title="Web shared hosting">Web hosting</a></li>
<li><a href="reseller-hosting.html">Reseller hosting</a></li>
<li><a href="vps.html">VPS hosting</a></li>
<li><a href="#">Dedicated server</a></li>
<li><a href="ssl.html">SSL certifikati</a></li>
<li><a href="exchange.html">Poslovni Mail</a></li>
<li><a href="cdn.html">CDN</a></li>
<li><a href="streaming.html">Shoutcast Streaming</a></li>
<li><a href="#">Cjenik</a></li>
<li><a href="agreement.html">Pravila korištenja</a></li>
</ul><!-- end of dropdown -->
</li>
<li>
<a href="domains.html">Domene</a>
</li>
<li>
<a href="#">Usluge</a>
<ul class="dropDown sub-menu">
<li><a href="#">Magento savjetovanje</a></li>
<li><a href="#">Managed hosting</a></li>
<li><a href="affiliate.html">Affiliate Program</a></li>
<li><a href="web-migration.html">Web migracije</a></li>
</ul><!-- end of dropdown -->
</li>
<li>
<a href="about.html">O nama</a>
<ul class="dropDown sub-menu">
<li><a href="team.html">Tim</a></li>
<li><a href="#">Infrastuktura</a></li>
<li><a href="http://ads.plus.hr/">Medijski materijal</a></li>
<li><a href="careers.html">Posao</a></li>
</ul><!-- end of dropdown -->
</li>
<li>
<a href="blog-sidebar.html">Blog</a>
</li>
<li>
<a href="contact.html">Kontakt</a>
</li>
<li class="login formTop">
<button class="formSwitcher" data-toggle="modal" data-target="#loginModal">Prijava</button>
<div class="modal loginModal fade" id="loginModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="container">
<ol class="formWrapper loginFormWrapper" id="loginFormWrapper">
<li><h5><i class="fa fa-user"></i></h5></li>
<li>
<form class="loginForm" method="POST">
<input class="loginName" id="loginName" name="loginName" placeholder="Korisničko ime" type="text">
<input class="loginPassword" id="loginPassword" name="loginPassword" placeholder="Lozinka" type="password">
<input type="checkbox" name="remember" id="remember">
<label for="remember">Zapamti me</label>
<button class="generalBtn loginBtn" type="submit">Prijavi se</button>
</form>
</li>
<li class="register"><p><a href="register.html">Registriraj se</a></p></li>
</ol>
</div><!-- end of container -->
</div><!-- end of modal -->
<a href="login.html">Prijava</a>
</li>
</ul><!-- end of nav tabs -->
</nav><!-- end of main nav -->
<a href="#" class="generalLink bordered" id="responsiveMainNavToggler"><i class="fa fa-bars"></i></a>
<div class="clearfix"></div><!-- end of clearfix -->
<div class="responsiveMainNav"></div><!-- end of responsive main nav -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of sticky -->
</header><!-- end of header -->
<!-- Pricing -->
<section class="pricing section mainSection scrollAnchor lightSection" id="pricing">
<div class="sectionWrapper">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="pricingTable">
<header class="pricingHeader clearfix">
<div class="pricingIcon"></div>
<h3 class="pricingTitle planTitle">Web hosting</h3>
</header><!-- end pricing header -->
<ul class="pricingBody planBody">
<li>Optimalni paketi</li>
<li>450 GB Bandwith</li>
<li>Mail računi</li>
<li>FTP računi</li>
<li>Sigurnost</li>
<li>24/7 Korisnička podrška</li>
<li class="clearfix">
<span class="pricingPerMonth">450Kn/god. <a href="web-hosting.html" class="generalLink order">Odaberi</a></span>
</li>
</ul><!-- end pricing body -->
</div><!-- end of pricing table -->
</div>
<div class="col-md-3 col-sm-6">
<div class="pricingTable">
<header class="pricingHeader clearfix">
<div class="pricingIcon"></div>
<h3 class="pricingTitle planTitle">Reseller hosting</h3>
</header><!-- end pricing header -->
<ul class="pricingBody planBody">
<li>WHM / WebistePanel</li>
<li>Dnevni backup</li>
<li>3 Datacentra</li>
<li>Mogućnost zarade</li>
<li>Sigurnost</li>
<li>24/7 Korisnička podrška</li>
<li class="clearfix">
<span class="pricingPerMonth">200Kn/god. <a href="reseller-hosting.html" class="generalLink order">Odaberi</a></span>
</li>
</ul><!-- end pricing body -->
</div><!-- end of pricing table -->
</div>
<div class="col-md-3 col-sm-6">
<div class="pricingTable">
<header class="pricingHeader clearfix">
<div class="pricingIcon"></div>
<h3 class="pricingTitle planTitle">VPS hosting</h3>
</header><!-- end pricing header -->
<ul class="pricingBody planBody">
<li>Managed / unamanged</li>
<li>Dnevni backup</li>
<li>3 Datacentra</li>
<li>Custom Cloud platforma</li>
<li>Custom Server setup</li>
<li>24/7 Premium podrška</li>
<li class="clearfix">
<span class="pricingPerMonth">118,75Kn/mj.<a href="vps-hosting.html" class="generalLink order">Odaberi</a></span>
</li>
</ul><!-- end pricing body -->
</div><!-- end of pricing table -->
</div>
<div class="col-md-3 col-sm-6">
<div class="pricingTable">
<header class="pricingHeader clearfix">
<div class="pricingIcon"></div>
<h3 class="pricingTitle planTitle">Dedicated server</h3>
</header><!-- end pricing header -->
<ul class="pricingBody planBody">
<li>Full managed usluga</li>
<li>Dnevni backup</li>
<li>3 Datacentra</li>
<li>Custom server setup</li>
<li>Sigurnost</li>
<li>24/7 Premium podrška</li>
<li class="clearfix">
<span class="pricingPerMonth">2.013Kn/mj.<a href="dedicated.html" class="generalLink order">Odaberi</a></span>
</li>
</ul><!-- end pricing body -->
</div><!-- end of pricing table -->
</div>
</div><!-- end of row-->
</div><!-- end of container -->
</div><!-- end of section wrapper -->
</section><!-- end of pricing section -->
<!-- Features -->
<section class="features section mainSection scrollAnchor lightSection" id="features">
<div class="sectionWrapper">
<div class="container">
<div class="row">
<div class="col-md-12 sectionTitle">
<h2 class="sectionHeader">
Plus Hosing paketi osigurati će Vam slijedeće mogućnosti
<span class="generalBorder"></span>
</h2><!-- end of sectionHeader -->
<p>Najkvalitetnija ponuda web hosting paketa - smještaj Vaših web stranica koje će biti dostupne na internetu na brzim, stabilnim i pouzdanim serverima uz brojne dodatne mogućnosti upravljanja i administracije. Pored web stranica i emailova, početni dijeljeni hosting omogućuje dovoljno resursa i usluga koje će znati cijeniti krajnji korisnici i programeri.<p>
</div><!-- end of section title -->
</div><!-- end of row -->
<div class="row">
<div class="featuresCarousel carousel owl-carousel featuresGallary">
<div class="col-md-3 col-sm-6 item feature singleFeatureWrapper">
<div class="singleFeature">
<div class="featureIcon"><i class="animated fa fa-sun-o"></i></div>
<h4 class="featureName"><a href="#">Besplatan inicijalni setup!</a></h4>
<p class="featureDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div><!-- end of single feature -->
</div><!-- end of single feature wrapper -->
<div class="col-md-3 col-sm-6 item feature singleFeatureWrapper">
<div class="singleFeature">
<div class="featureIcon"><i class="animated fa fa-building-o"></i></div>
<h4 class="featureName"><a href="#">cPanel / WebsitePanel</a></h4>
<p class="featureDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div><!-- end of single feature -->
</div><!-- end of single feature wrapper -->
<div class="col-md-3 col-sm-6 item feature singleFeatureWrapper">
<div class="singleFeature">
<div class="featureIcon"><i class="animated fa fa-lock"></i></div>
<h4 class="featureName"><a href="#">Zaštita od napada</a></h4>
<p class="featureDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div><!-- end of single feature -->
</div><!-- end of single feature wrapper -->
<div class="col-md-3 col-sm-6 item feature singleFeatureWrapper">
<div class="singleFeature">
<div class="featureIcon"><i class="animated fa fa-desktop"></i></div>
<h4 class="featureName"><a href="#">One-click CMS instalacije</a></h4>
<p class="featureDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div><!-- end of single feature -->
</div><!-- end of single feature wrapper -->
<div class="col-md-3 col-sm-6 item feature singleFeatureWrapper">
<div class="singleFeature">
<div class="featureIcon"><i class="animated fa fa-sun-o"></i></div>
<h4 class="featureName"><a href="#">Besplatan inicijalni setup!</a></h4>
<p class="featureDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div><!-- end of single feature -->
</div><!-- end of single feature wrapper -->
<div class="col-md-3 col-sm-6 item feature singleFeatureWrapper">
<div class="singleFeature">
<div class="featureIcon"><i class="animated fa fa-building-o"></i></div>
<h4 class="featureName"><a href="#">cPanel / WebsitePanel</a></h4>
<p class="featureDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div><!-- end of single feature -->
</div><!-- end of single feature wrapper -->
<div class="col-md-3 col-sm-6 item feature singleFeatureWrapper">
<div class="singleFeature">
<div class="featureIcon"><i class="animated fa fa-lock"></i></div>
<h4 class="featureName"><a href="#">Zaštita od napada</a></h4>
<p class="featureDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div><!-- end of single feature -->
</div><!-- end of single feature wrapper -->
<div class="col-md-3 col-sm-6 item feature singleFeatureWrapper">
<div class="singleFeature">
<div class="featureIcon"><i class="animated fa fa-desktop"></i></div>
<h4 class="featureName"><a href="#">One-click CMS instalacije</a></h4>
<p class="featureDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div><!-- end of single feature -->
</div><!-- end of single feature wrapper -->
<div class="col-md-3 col-sm-6 item feature singleFeatureWrapper">
<div class="singleFeature">
<div class="featureIcon"><i class="animated fa fa-sun-o"></i></div>
<h4 class="featureName"><a href="#">Besplatan inicijalni setup!</a></h4>
<p class="featureDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div><!-- end of single feature -->
</div><!-- end of single feature wrapper -->
<div class="col-md-3 col-sm-6 item feature singleFeatureWrapper">
<div class="singleFeature">
<div class="featureIcon"><i class="animated fa fa-building-o"></i></div>
<h4 class="featureName"><a href="#">cPanel / WebsitePanel</a></h4>
<p class="featureDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div><!-- end of single feature -->
</div><!-- end of single feature wrapper -->
<div class="col-md-3 col-sm-6 item feature singleFeatureWrapper">
<div class="singleFeature">
<div class="featureIcon"><i class="animated fa fa-lock"></i></div>
<h4 class="featureName"><a href="#">Zaštita od napada</a></h4>
<p class="featureDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div><!-- end of single feature -->
</div><!-- end of single feature wrapper -->
<div class="col-md-3 col-sm-6 item feature singleFeatureWrapper">
<div class="singleFeature">
<div class="featureIcon"><i class="animated fa fa-desktop"></i></div>
<h4 class="featureName"><a href="#">One-click CMS instalacije</a></h4>
<p class="featureDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div><!-- end of single feature -->
</div><!-- end of single feature wrapper -->
</div><!-- end of features gallary -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of section wrapper -->
</section><!-- end features section -->
<!-- Domain Search -->
<section class="domainSearch section mainSection scrollAnchor darkSection" id="domainSearch">
<div class="sectionWrapper">
<div class="container">
<div class="row">
<div class="col-md-12 sectionTitle">
<h2 class="sectionHeader">
Izabrali ste domenu? Provjerite je li slobodna za registraciju
<span class="generalBorder"></span>
</h2><!-- end of sectionHeader -->
<p>Registracijom vlastite domene osiguravate da www.mojdomena.com neće registrirati netko drugi. Za prvu godinu zakupa svakog web hosting paketa uključena je besplatna registracija domene (.com, .net, .org, .info, .biz) u trajanju od godine dana ili posredovanje pri registraciji .hr domene.</p>
</div><!-- end of section title -->
<form class="col-md-12 domainSearchForm">
<ul class="formSearchUl clearfix">
<li>
<input class="domainSearchBar" value="Unesi željeni naziv domene i provjeri njenu dostupnost" onblur="if(this.value=='')this.value='Unesi željeni naziv domene i provjeri njenu dostupnost'" onfocus="if(this.value=='Unesi željeni naziv domene i provjeri njenu dostupnost')this.value=''" id="domainSearchBar" name="domainSearchBar" type="search">
<select id="domainEx">
<option data-description="( 98,75 / god. )" value="com">.COM</option>
<option data-description="( 98,75 / god. )" value="net">.NET</option>
<option data-description="( 98,75 / god. )" value="org">.ORG</option>
<option data-description="( 148,75 / god. )" value="me">.ME</option>
</select>
</li>
<li>
<button class="searchBtn" id="searchBtn" type="submit">
<i class="animated fa fa-search"></i>
</button>
</li>
</ul>
</form><!-- end of domain search form -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of section wrapper -->
</section><!-- end of domain search section -->
<!-- Welcome -->
<section class="welcome section mainSection scrollAnchor lightSection" id="welcome">
<div class="sectionWrapper">
<div class="container">
<div class="row">
<div class="col-md-12 sectionTitle">
<h2 class="sectionHeader">
Zašto izabrati Plus Hosting?
<span class="generalBorder"></span>
</h2><!-- end of sectionHeader -->
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lorem quam, adipiscing condimentum tristique vel, eleifend sed turpis. Pellentesque cursus arcu id magna euismod in elementum purus molestie.</p>
</div><!-- end of section title -->
</div><!-- end of row -->
<div class="row">
<div class="col-md-3 col-sm-6 item service singleServiceWrapper">
<div class="singleService">
<h3 class="serviceName">Malware zaštita</h3>
<div class="serviceIcon">
<div class="servicesIconBase servicesBg-1"></div>
</div>
<p class="servicesDescription">Vlastito razvijen sustav rane detekcije i prevencije nepoželjnog sadržaja.</p>
<a class="readMore generalLink" href="#">Detaljnije</a>
</div><!-- end of single service -->
</div><!-- end of single service wrapper -->
<div class="col-md-3 col-sm-6 item service singleServiceWrapper">
<div class="singleService">
<h3 class="serviceName">Dnevni Backup</h3>
<div class="serviceIcon">
<div class="servicesIconBase servicesBg-2"></div>
</div>
<p class="servicesDescription">Automatsko kreiranje backup arhivi 7 dana / 4 tjedna/ 1 mjesečni.</p>
<a class="readMore generalLink" href="#">Detaljnije</a>
</div><!-- end of single service -->
</div><!-- end of single service wrapper -->
<div class="col-md-3 col-sm-6 item service singleServiceWrapper">
<div class="singleService">
<h3 class="serviceName">Korisnička podrška</h3>
<div class="serviceIcon">
<div class="servicesIconBase servicesBg-3"></div>
</div>
<p class="servicesDescription">365 / 24 / 7 dostupnost putem live chat, ticket i telefon linije.</p>
<a class="readMore generalLink" href="#">Detaljnije</a>
</div><!-- end of single service -->
</div><!-- end of single service wrapper -->
<div class="col-md-3 col-sm-6 item service singleServiceWrapper">
<div class="singleService">
<h3 class="serviceName">Datacentri</h3>
<div class="serviceIcon">
<div class="servicesIconBase servicesBg-4"></div>
</div>
<p class="servicesDescription">Lociranost servera u Hrvatskom Datacentru.</p>
<a class="readMore generalLink" href="#">Detaljnije</a>
</div><!-- end of single service -->
</div><!-- end of single service wrapper -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of section wrapper -->
</section><!-- end welcome section -->
<!-- Purchase -->
<section class="purchase section mainSection scrollAnchor accentSection" id="purchase">
<div class="sectionWrapper">
<div class="container">
<div class="row">
<div class="col-md-12 sectionTitle">
<h2 class="sectionHeader">
Spremni postati naš korisnik? Web hosting paketi u ponudi već od 450Kn/god.
</h2><!-- end of sectionHeader -->
<p>Svaka naša hosting usluga je dodatno optimizirana za izvođenje specifičnih web zahtjeva. Izaberite hosting paket koji će odgovarati Vašim potrebama.</p>
</div><!-- end of section title -->
<div class="links">
<a class="generalLink lg" href="#">Naruči odmah</a>
</div><!-- end of links -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of section wrapper -->
</section><!-- end purchase section -->
<!-- Blog -->
<section class="blog section mainSection scrollAnchor lightSection" id="blog">
<div class="sectionWrapper">
<div class="container">
<div class="row">
<div class="col-md-12 sectionTitle">
<h2 class="sectionHeader">
Izdvojeni članci o novostima
<span class="generalBorder"></span>
</h2><!-- end of sectionHeader -->
<p>Kako bismo Vam mogli pomagati prilikom postavljanja web stranica i administrirati Vaše web hosting pakete, konstantno pratimo novosti iz IT i pišemo o tome. Provjerite što su za Vas pripremil naši stručnjaci!</p>
</div><!-- end of section title -->
</div><!-- end of row -->
<div class="row">
<div class="grid-sizer"></div><!-- end of grid sizer -->
<article class="col-md-4 post">
<div class="postWrapper">
<div class="postMedia">
<ul class="postMeta clearfix">
<li class="postDate">
<div class="metaContent">
<i class="animated fa fa-clock-o"></i>
Datum : 18.10.2014
</div>
</li>
<li class="postAuthor">
<div class="metaContent">
<i class="animated fa fa-user"></i>
Autor :
<a href="#" title="author name">Saša</a>
</div>
</li>
</ul>
<a href="single-blog-1.html" title="post sample">
<img alt="post sample" src="images/blog1.jpg" title="post sample">
</a>
</div>
<div class="postContents">
<a href="#" class="postIcon">
<i class="animated fa fa-newspaper-o"></i>
</a>
<h4 class="postTitle">
<a href="single-blog-1.html" title="post sample">POODLE napad na SSL 3.0 protokol</a>
</h4>
<p class="postDetails">Google je ovaj tjedan objavio detalje tzv. POODLE napada na SSL 3.0 protokol. SSL 3.0 je 18 godina star protokol koji, unatoč prisutnosti naprednijeg i sigurnijeg TLS protokola, još uvijek uživa u vrlo rasprostranjenoj podršci, između ostalog u web preglednicima, e-mail klijentima, web, mail, FTP, VPN i drugim serverima. </p>
<a class="readMore bordered generalLink" href="single-blog-1.html" title="read more">Detaljnije</a>
</div>
</div>
</article><!-- end of post -->
<article class="col-md-4 post">
<div class="postWrapper">
<div class="postMedia">
<ul class="postMeta clearfix">
<li class="postDate">
<div class="metaContent">
<i class="animated fa fa-clock-o"></i>
Datum : 15.04.2014
</div>
</li>
<li class="postAuthor">
<div class="metaContent">
<i class="animated fa fa-user"></i>
Autor :
<a href="#" title="author name">Branko</a>
</div>
</li>
</ul>
<a href="single-blog-1.html" title="post sample">
<img alt="post sample" src="images/blog2.jpg" title="post sample">
</a>
</div>
<div class="postContents">
<a href="#" class="postIcon">
<i class="animated fa fa-newspaper-o"></i>
</a>
<h4 class="postTitle">
<a href="single-blog-1.html" title="post sample">Heartbleed – OpenSSL propust</a>
</h4>
<p class="postDetails">Nedavno je otkriven propust u OpenSSL-u, popularnom SSL/TLS toolkitu koji je prisutan na većini servera na Internetu. S obzirom na medijsku pozornost koju je privukao, za “Heartbleed” propust ste vjerojatno već čuli, a možda ste se i informirali o tehničkim detaljima na web stranici heartbleed.com.</p>
<a class="readMore bordered generalLink" href="single-blog-1.html" title="read more">Detaljnije</a>
</div>
</div>
</article><!-- end of post -->
<article class="col-md-4 post">
<div class="postWrapper">
<div class="postMedia">
<ul class="postMeta clearfix">
<li class="postDate">
<div class="metaContent">
<i class="animated fa fa-clock-o"></i>
Datum : 02.01.2014
</div>
</li>
<li class="postAuthor">
<div class="metaContent">
<i class="animated fa fa-user"></i>
Autor :
<a href="#" title="author name">Zvonimir</a>
</div>
</li>
</ul>
<a href="single-blog-1.html" title="post sample">
<img alt="post sample" src="images/blog3.jpg" title="post sample">
</a>
</div>
<div class="postContents">
<a href="#" class="postIcon">
<i class="animated fa fa-newspaper-o"></i>
</a>
<h4 class="postTitle">
<a href="single-blog-1.html" title="post sample">Novosti o domenama u 2014.</a>
</h4>
<p class="postDetails">Od 2.1.2014. godine je došlo do nekoliko promjena koje su donesene od strane krovne organizacije za upravljanje domenama – ICANN, i našeg matičnog registrara. Promjene se odnose samo na gTLD-ove (.com, .net, .org, .biz, .info).Whois privatnost više nije dostupna besplatno sukladno odluci našeg matičnog registrara.</p>
<a class="readMore bordered generalLink" href="single-blog-1.html" title="read more">Detaljnije</a>
</div>
</div>
</article><!-- end of post -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of section wrapper -->
</section><!-- end blog section -->
<!-- Testmonials -->
<section class="testmonials section mainSection scrollAnchor graySection" id="testmonials">
<div class="sectionWrapper">
<div class="container">
<div class="row">
<div class="col-md-12 sectionTitle">
<h2 class="sectionHeader">
Što naši korisnici kažu o nama
<span class="generalBorder"></span>
</h2><!-- end of sectionHeader -->
<p>U Plus Hostingu potičemo naše klijente na ostavljanje povratnog komentara o zadovoljstvu našom uslugom. Izdvojili smo nekoliko komentara naših korisnika prikupljenih tijekom niza godina rada.</p>
</div><!-- end of section title -->
</div><!-- end of row -->
<div class="row">
<div class="testmonialsCarousel owl-carousel testmonialsGallary">
<div class="col-md-4 col-sm-6 item testmonial singleTestmonialWrapper">
<div class="singleTestmonial">
<div class="testmonialsTopContents clearfix">
<img alt="testmonials tip" class="tip" src="images/tip.png">
<img alt="testmonials user" class="testmonialthumb" src="images/test-1.jpg">
<blockquote><p>Svako malo me @PlusHostingHr ugodno iznenadi svojom korisničkom podrškom. Tko nije kod njih ... griješi. Hvala ekipa!</p></blockquote>
</div><!-- end of testmonials top contents -->
<div class="testmonialsBottomContents">
<p><a class="userName" href="https://twitter.com/crnaovcazg" title="user name">@crnaovcazg</a></p>
<p><a class="userWebsite" href="#" title="use website">https://twitter.com/crnaovcazg</a></p>
</div><!-- end of testmonials bottom contents -->
</div><!-- end of single testmonial -->
</div><!-- end of single testmonials wrapper -->
<div class="col-md-4 col-sm-6 item testmonial singleTestmonialWrapper">
<div class="singleTestmonial">
<div class="testmonialsTopContents clearfix">
<img alt="testmonials tip" class="tip" src="images/tip.png">
<img alt="testmonials user" class="testmonialthumb" src="images/test-2.jpg">
<blockquote><p>WebCamp Zagreb web ima novi dom! Puno hvala @PlusHostingHr ! http://2013.webcampzg.org</p></blockquote>
</div><!-- end of testmonials top contents -->
<div class="testmonialsBottomContents">
<p><a class="userName" href="https://twitter.com/webcampzg" title="user name">@webcampzg</a></p>
<p><a class="userWebsite" href="http://2014.webcampzg.org/" title="use website">WebCamp Zagreb</a></p>
</div><!-- end of testmonials bottom contents -->
</div><!-- end of single testmonial -->
</div><!-- end of single testmonials wrapper -->
<div class="col-md-4 col-sm-6 item testmonial singleTestmonialWrapper">
<div class="singleTestmonial">
<div class="testmonialsTopContents clearfix">
<img alt="testmonials tip" class="tip" src="images/tip.png">
<img alt="testmonials user" class="testmonialthumb" src="images/test-3.jpg">
<blockquote><p>Mislim da neću pretjerati ako kažem da @PlusHostingHr ima najbolju korisničku službu u Hrvatskoj!</p></blockquote>
</div><!-- end of testmonials top contents -->
<div class="testmonialsBottomContents">
<p><a class="userName" href="https://twitter.com/ilijabrajkovic" title="user name">Ilija Brajkovic</a></p>
<p><a class="userWebsite" href="http://akcija.com.hr/" title="use website">akcija.com.hr </a></p>
</div><!-- end of testmonials bottom contents -->
</div><!-- end of single testmonial -->
</div><!-- end of single testmonials wrapper -->
<div class="col-md-4 col-sm-6 item testmonial singleTestmonialWrapper">
<div class="singleTestmonial">
<div class="testmonialsTopContents clearfix">
<img alt="testmonials tip" class="tip" src="images/tip.png">
<img alt="testmonials user" class="testmonialthumb" src="images/test-1.jpg">
<blockquote><p>Svako malo me @PlusHostingHr ugodno iznenadi svojom korisničkom podrškom. Tko nije kod njih ... griješi. Hvala ekipa!</p></blockquote>
</div><!-- end of testmonials top contents -->
<div class="testmonialsBottomContents">
<p><a class="userName" href="https://twitter.com/crnaovcazg" title="user name">@crnaovcazg</a></p>
<p><a class="userWebsite" href="#" title="use website">https://twitter.com/crnaovcazg</a></p>
</div><!-- end of testmonials bottom contents -->
</div><!-- end of single testmonial -->
</div><!-- end of single testmonials wrapper -->
<div class="col-md-4 col-sm-6 item testmonial singleTestmonialWrapper">
<div class="singleTestmonial">
<div class="testmonialsTopContents clearfix">
<img alt="testmonials tip" class="tip" src="images/tip.png">
<img alt="testmonials user" class="testmonialthumb" src="images/test-2.jpg">
<blockquote><p>WebCamp Zagreb web ima novi dom! Puno hvala @PlusHostingHr ! http://2013.webcampzg.org</p></blockquote>
</div><!-- end of testmonials top contents -->
<div class="testmonialsBottomContents">
<p><a class="userName" href="https://twitter.com/webcampzg" title="user name">@webcampzg</a></p>
<p><a class="userWebsite" href="http://2014.webcampzg.org/" title="use website">WebCamp Zagreb</a></p>
</div><!-- end of testmonials bottom contents -->
</div><!-- end of single testmonial -->
</div><!-- end of single testmonials wrapper -->
<div class="col-md-4 col-sm-6 item testmonial singleTestmonialWrapper">
<div class="singleTestmonial">
<div class="testmonialsTopContents clearfix">
<img alt="testmonials tip" class="tip" src="images/tip.png">
<img alt="testmonials user" class="testmonialthumb" src="images/test-3.jpg">
<blockquote><p>Mislim da neću pretjerati ako kažem da @PlusHostingHr ima najbolju korisničku službu u Hrvatskoj!</p></blockquote>
</div><!-- end of testmonials top contents -->
<div class="testmonialsBottomContents">
<p><a class="userName" href="https://twitter.com/ilijabrajkovic" title="user name">Ilija Brajkovic</a></p>
<p><a class="userWebsite" href="http://akcija.com.hr/" title="use website">akcija.com.hr </a></p>
</div><!-- end of testmonials bottom contents -->
</div><!-- end of single testmonial -->
</div><!-- end of single testmonials wrapper -->
<div class="col-md-4 col-sm-6 item testmonial singleTestmonialWrapper">
<div class="singleTestmonial">
<div class="testmonialsTopContents clearfix">
<img alt="testmonials tip" class="tip" src="images/tip.png">
<img alt="testmonials user" class="testmonialthumb" src="images/test-1.jpg">
<blockquote><p>Svako malo me @PlusHostingHr ugodno iznenadi svojom korisničkom podrškom. Tko nije kod njih ... griješi. Hvala ekipa!</p></blockquote>
</div><!-- end of testmonials top contents -->
<div class="testmonialsBottomContents">
<p><a class="userName" href="https://twitter.com/crnaovcazg" title="user name">@crnaovcazg</a></p>
<p><a class="userWebsite" href="#" title="use website">https://twitter.com/crnaovcazg</a></p>
</div><!-- end of testmonials bottom contents -->
</div><!-- end of single testmonial -->
</div><!-- end of single testmonials wrapper -->
<div class="col-md-4 col-sm-6 item testmonial singleTestmonialWrapper">
<div class="singleTestmonial">
<div class="testmonialsTopContents clearfix">
<img alt="testmonials tip" class="tip" src="images/tip.png">
<img alt="testmonials user" class="testmonialthumb" src="images/test-2.jpg">
<blockquote><p>WebCamp Zagreb web ima novi dom! Puno hvala @PlusHostingHr ! http://2013.webcampzg.org</p></blockquote>
</div><!-- end of testmonials top contents -->
<div class="testmonialsBottomContents">
<p><a class="userName" href="https://twitter.com/webcampzg" title="user name">@webcampzg</a></p>
<p><a class="userWebsite" href="http://2014.webcampzg.org/" title="use website">WebCamp Zagreb</a></p>
</div><!-- end of testmonials bottom contents -->
</div><!-- end of single testmonial -->
</div><!-- end of single testmonials wrapper -->
<div class="col-md-4 col-sm-6 item testmonial singleTestmonialWrapper">
<div class="singleTestmonial">
<div class="testmonialsTopContents clearfix">
<img alt="testmonials tip" class="tip" src="images/tip.png">
<img alt="testmonials user" class="testmonialthumb" src="images/test-3.jpg">
<blockquote><p>Mislim da neću pretjerati ako kažem da @PlusHostingHr ima najbolju korisničku službu u Hrvatskoj!</p></blockquote>
</div><!-- end of testmonials top contents -->
<div class="testmonialsBottomContents">
<p><a class="userName" href="https://twitter.com/ilijabrajkovic" title="user name">Ilija Brajkovic</a></p>
<p><a class="userWebsite" href="http://akcija.com.hr/" title="use website">akcija.com.hr </a></p>
</div><!-- end of testmonials bottom contents -->
</div><!-- end of single testmonial -->
</div><!-- end of single testmonials wrapper -->
</div><!-- end of testmonials gallary -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of section wrapper -->
</section><!-- end testmonials section -->
<!-- Clients -->
<section class="clients section mainSection scrollAnchor lightSection" id="clients">
<div class="sectionWrapper">
<div class="container">
<div class="row">
<div class="col-md-12 sectionTitle">
<h2 class="sectionHeader">
Budite i Vi na listi naših zadovoljnih klijenata !
</h2><!-- end of sectionHeader -->
</div><!-- end of section title -->
</div><!-- end of row -->
<div class="row">
<div class="clientsCarousel owl-carousel clientsGallary">
<div class="col-md-2 col-sm-4 item client singleClientsWrapper">
<a class="singleClient" href="#" title="client">
<img alt="client 1" src="images/clients/1.png" title="client">
</a><!-- end of single client -->
</div><!-- end of single client wrapper -->
<div class="col-md-2 col-sm-4 item client singleClientsWrapper">
<a class="singleClient" href="#" title="client">
<img alt="client 2" src="images/clients/2.png" title="client">
</a><!-- end of single client -->
</div><!-- end of single client wrapper -->
<div class="col-md-2 col-sm-4 item client singleClientsWrapper">
<a class="singleClient" href="#" title="client">
<img alt="client 3" src="images/clients/3.png" title="client">
</a><!-- end of single client -->
</div><!-- end of single client wrapper -->
<div class="col-md-2 col-sm-4 item client singleClientsWrapper">
<a class="singleClient" href="#" title="client">
<img alt="client 4" src="images/clients/4.png" title="client">
</a><!-- end of single client -->
</div><!-- end of single client wrapper -->
<div class="col-md-2 col-sm-4 item client singleClientsWrapper">
<a class="singleClient" href="#" title="client">
<img alt="client 5" src="images/clients/5.png" title="client">
</a><!-- end of single client -->
</div><!-- end of single client wrapper -->
<div class="col-md-2 col-sm-4 item client singleClientsWrapper">
<a class="singleClient" href="#" title="client">
<img alt="client 6" src="images/clients/6.png" title="client">
</a><!-- end of single client -->
</div><!-- end of single client wrapper -->
<div class="col-md-2 col-sm-4 item client singleClientsWrapper">
<a class="singleClient" href="#" title="client">
<img alt="client 7" src="images/clients/7.png" title="client">
</a><!-- end of single client -->
</div><!-- end of single client wrapper -->
<div class="col-md-2 col-sm-4 item client singleClientsWrapper">
<a class="singleClient" href="#" title="client">
<img alt="client 8" src="images/clients/8.png" title="client">
</a><!-- end of single client -->
</div><!-- end of single client wrapper -->
<!-- end of single client wrapper -->
</div><!-- end of clients gallary -->
</div><!-- end of row -->
</div>
</div>
</section><!-- end clients section -->
<!-- Footer -->
<footer class="footer" id="footer">
<!-- Top Footer -->
<div class="topFooter">
<div class="container">
<div class="row">
<div class="col-md-4 footerWidget footerBox">
<h5 class="footerWidgetHeader">O Plus hostingu</h5><!-- end of footer widget header -->
<p class="footerAboutContent footerText">Plus Hosting, najveći hosting provider regije</p>
<div class="aboutLinks clearfix">
<ul class="footerLinksList">
<li><a href="about.html" title="O nama">O nama</a></li>
<li><a href="infrastructure.html" title="Infrastructure">Infrastruktura</a></li>