forked from IOSD/iosd.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·982 lines (887 loc) · 57.7 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
<!DOCTYPE html>
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Ultra - Responsive Multi-Purpose Template</title>
<!-- Favicon
============================================== -->
<link rel="shortcut icon" href="images/favicon.png">
<!-- Mobile Specific
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS Files
================================================== -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<link rel="stylesheet" type="text/css" href="css/color/blue.css" id="colors">
<link rel="stylesheet" type="text/css" href="css/settings.css">
<link rel="stylesheet" type="text/css" href="css/owl.carousel.css">
<link rel="stylesheet" type="text/css" href="css/jquery.bxslider.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/jquery.fancybox.css" media="all" />
<link rel='stylesheet' type='text/css' href='https://fonts.googleapis.com/css?family=Poppins:400,300,500,600'>
<link rel='stylesheet' type='text/css' href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700,600italic,400italic'>
<link rel="stylesheet" type="text/css" href="css/fonts/fontello.css">
<link rel="stylesheet" type="text/css" href="css/fonts/gizmo.css">
<link rel="stylesheet" type="text/css" href="css/fonts/picons.css">
<link rel="stylesheet" type="text/css" href="switcher/switcher.css">
<!--[if lt IE 9]>
<script src="../../../html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<!-- loader -->
<div class="loader">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</div>
<!-- /loader -->
<!-- wrapper -->
<nav id="main-nav">
<div class="widget">
<p>Ultra elementum consequat lacus, sit amet pulvinar urna hendrerit sit amet. Sed aliquam eu ante a ultricies. Interdum et malesuada fames ac ante ipsum primis in faucibus. Fusce elementum felis lorem, eget scelerisque enim blandit quis.</p>
<p>Massa turpis ornare nec commodo non, auctor vel cursus vestibulum varius hendrerit turpis quiseam cursus.</p>
</div>
<div class="social-nav-block">
<a href="#" class="twitter-alt"><i class="icon-twitter"></i></a>
<a href="#" class="facebook-alt"><i class="icon-facebook"></i></a>
<a href="#" class="google-alt"><i class="icon-gplus"></i></a>
<a href="#" class="linkedin-alt"><i class="icon-linkedin"></i></a>
<a href="#" class="pinterest-alt"><i class="icon-pinterest"></i></a>
<a href="#" class="dribbble-alt"><i class="icon-dribbble"></i></a>
</div>
</nav>
<!-- content wrapper -->
<div class="content-wrap">
<div class="content">
<!-- header -->
<div class="header-nav basic set yamm nobg">
<div class="container">
<div class="basic-wrapper">
<a class="btn mobile-menu right" data-toggle="collapse" data-target=".navbar-collapse"><i class='icon-menu-1'></i></a>
<a class="logo-white" href="index.html">Ultra</a>
<a class="logo-dark" href="index.html">Ultra</a>
</div>
<div class="collapse navbar-collapse right">
<!-- navigation -->
<ul class="nav navbar-nav">
<li class="dropdown"><a href="#" class="dropdown-toggle js-activated white">Home</a>
<ul class="dropdown-menu">
<li><a href="index.html">Home - Business </a></li>
<li><a href="index2.html">Home - Agency</a></li>
<li><a href="index3.html">Home - Classic</a></li>
<li><a href="index4.html">Home - Landing</a></li>
<li><a href="index5.html">Home - Portfolio</a></li>
<li><a href="index6.html">Home - Education</a></li>
<li><a href="index7.html">Home - Medical</a></li>
<li><a href="index8.html">Home - Personal</a></li>
</ul>
</li>
<li class="dropdown"><a href="#" class="dropdown-toggle js-activated white">Pages</a>
<ul class="dropdown-menu">
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="full-width.html">Full Width</a></li>
<li><a href="left-sidebar.html">Left Sidebar</a></li>
<li><a href="right-sidebar.html">Right Sidebar</a></li>
<li><a href="404.html">404 Page</a></li>
</ul>
</li>
<li class="dropdown yamm-fullwidth"><a href="#" class="dropdown-toggle js-activated white">Features</a>
<ul class="dropdown-menu yamm-dropdown-menu">
<li>
<div class="yamm-content">
<div class="col-sm-3">
<ul>
<li><a href="accordion.html">Accordion & Toggles</a></li>
<li><a href="tabs.html">Tabs</a></li>
<li><a href="buttons.html">Buttons</a></li>
<li><a href="columns.html">Columns</a></li>
<li><a href="pricing.html">Pricing Tables</a></li>
</ul>
</div>
<div class="col-sm-3">
<ul>
<li><a href="icons.html">Font Icons</a></li>
<li><a href="progress-bar.html">Progress Bar</a></li>
<li><a href="icon-boxes.html">Icon Boxes</a></li>
<li><a href="counter.html">Fact Counter</a></li>
<li><a href="pie-chart.html">Pie Chart</a></li>
</ul>
</div>
<div class="col-sm-3">
<ul>
<li><a href="gallery.html">Photo Gallery</a></li>
<li><a href="page-slider.html">Page Slider</a></li>
<li><a href="parallax.html">Parallax Background</a></li>
<li><a href="gmap.html">Google Map</a></li>
<li><a href="alert.html">Alert Boxes</a></li>
</ul>
</div>
<div class="col-sm-3">
<ul class="last">
<li><a href="typography.html">Typography</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="team.html">Team Members</a></li>
<li><a href="tables.html">Tables</a></li>
<li><a href="video.html">Video Backgrounds</a></li>
</ul>
</div>
</div>
</li>
</ul>
</li>
<li class="dropdown yamm-fullwidth"><a href="#" class="dropdown-toggle js-activated white">Portfolio</a>
<ul class="dropdown-menu yamm-dropdown-menu">
<li>
<div class="yamm-content">
<div class="col-sm-3">
<ul>
<li><a href="portfolio4.html">Portfolio boxed 4 column</a></li>
<li><a href="portfolio4-wide.html">Portfolio wide 4 column</a></li>
<li><a href="portfolio4-masonry.html">Portfolio Masonry 4 column</a></li>
<li><a href="portfolio4-wide-titles.html">Portfolio wide titles 4 column</a></li>
<li><a href="portfolio4-whitebg.html">Portfolio boxed whitebg 4 column</a></li>
</ul>
</div>
<div class="col-sm-3">
<ul>
<li><a href="portfolio3.html">Portfolio boxed 3 column</a></li>
<li><a href="portfolio3-wide.html">Portfolio wide 3 column</a></li>
<li><a href="portfolio3-masonry.html">Portfolio Masonry 3 column</a></li>
<li><a href="portfolio3-wide-titles.html">Portfolio wide titles 3 column</a></li>
<li><a href="portfolio3-whitebg.html">Portfolio boxed whitebg 3 column</a></li>
</ul>
</div>
<div class="col-sm-3">
<ul>
<li><a href="portfolio2.html">Portfolio boxed 2 column</a></li>
<li><a href="portfolio2-wide.html">Portfolio wide 2 column</a></li>
<li><a href="portfolio2-masonry.html">Portfolio Masonry 2 column</a></li>
<li><a href="portfolio2-wide-titles.html">Portfolio wide titles 2 column</a></li>
<li><a href="portfolio2-whitebg.html">Portfolio boxed whitebg 2 column</a></li>
</ul>
</div>
<div class="col-sm-3">
<ul class="last">
<li><a href="portfolio-half.html">Portfolio with Half Slider</a></li>
<li><a href="portfolio-full.html">Portfolio with Full Slider</a></li>
<li><a href="portfolio-parallax.html">Portfolio with Parallax</a></li>
<li><a href="portfolio-images.html">Portfolio with Images</a></li>
<li><a href="portfolio-video.html">Portfolio with Video</a></li>
</ul>
</div>
</div>
</li>
</ul>
</li>
<li class="dropdown"><a href="#" class="dropdown-toggle js-activated white">Blog</a>
<ul class="dropdown-menu">
<li><a href="blog-large.html">Blog Large Images</a></li>
<li><a href="blog-medium.html">Blog Medium Images</a></li>
<li><a href="blog-grid.html">Blog Grid Style</a></li>
<li><a href="blog-grid-sidebar.html">Blog Grid Style Sidebar</a></li>
<li><a href="blog-single-post.html">Blog Single Post</a></li>
</ul>
</li>
<li class="dropdown"><a href="#" class="dropdown-toggle js-activated white">Shop</a>
<ul class="dropdown-menu">
<li><a href="product-fullwidth.html">Product Fullwidth</a></li>
<li><a href="product-sidebar.html">Product Sidebar</a></li>
<li><a href="product-single.html">Product Single</a></li>
<li><a href="product-cart.html">Product Cart </a></li>
<li><a href="product-login.html">Product Login </a></li>
<li><a href="product-checkout.html">Product Checkout </a></li>
</ul>
</li>
<li>
<ul class="social-top">
<li><a href="#" id="trigger-overlay"><i class="icon-search-1 white"></i></a></li>
<li><a href="#" class="nav-trigger"><i class="icon-menu-1 white"></i></a></li>
</ul>
</li>
</ul>
<!-- /navigation -->
</div>
</div>
</div>
<!-- / header -->
<!-- revolution slider -->
<div class="banner-container revolution no-tmrg">
<div class="banner-full">
<ul>
<li data-transition="fade"> <img src="images/content/slider-bg1.jpg" class="img-responsive" alt="" />
<div class="caption sfr lower"
data-x="480"
data-y="330"
data-speed="600"
data-start="800"
data-easing="Sine.easeOut">We bring to you responsive</div>
<div class="caption sfr upper1"
data-x="480"
data-y="380"
data-speed="600"
data-start="1200"
data-easing="Sine.easeOut">Awesome Html5 Business <br>
Website Template</div>
<div class="caption sfr"
data-x="480"
data-y="580"
data-speed="600"
data-start="1400"
data-easing="Sine.easeOut"><a class="btn btn-white-brd" href="#" target="_self">Purchase Now </a></div>
</li>
<li data-transition="fade"> <img src="images/content/slider-bg2.jpg" class="img-responsive" alt="" />
<div class="caption sfb lower"
data-x="10"
data-y="340"
data-speed="1000"
data-start="800"
data-easing="Sine.easeOut">Get ready to showcase</div>
<div class="caption sfb upper"
data-x="10"
data-y="400"
data-speed="1000"
data-start="1200"
data-easing="Sine.easeOut">Amazing Work using Ultra<br>
Responsive Template</div>
<div class="caption sfb lower"
data-x="10"
data-y="550"
data-speed="1000"
data-start="1600"
data-easing="Sine.easeOut">We help grow your business with creative ideas & innovation</div>
</li>
<li data-transition="fade"> <img src="images/content/slider-bg3.jpg" class="img-responsive" alt="" />
<div class="caption sfb lower"
data-x="center"
data-y="330"
data-speed="1000"
data-start="800"
data-easing="Sine.easeOut">Say hello to Ultra</div>
<div class="caption sfb upper"
data-x="center"
data-y="380"
data-speed="1000"
data-start="1200"
data-easing="Sine.easeOut" style="text-align:center;">Some badass support team <br>around
to help you</div>
<div class="caption sfb"
data-x="center"
data-y="530"
data-speed="1000"
data-start="1400"
data-easing="Sine.easeOut"><a class="btn btn-white-brd" href="#" target="_self">Learn more </a>
<a class="btn btn-white" href="#" target="_self">Purchase Now </a></div>
</li>
</ul>
<div class="tp-bannertimer tp-bottom"></div>
</div>
<!-- /.banner -->
</div>
<!-- /.fullwidthbanner-container -->
<!-- intro section -->
<div class="bg-white t-pad60 b-pad80">
<div class="container">
<div class="row t-mgr30">
<div class="col-md-10 col-xs-offset-1">
<h2 class="heading"><span>beautifully</span> crafted modern design</h2>
<p class="h-sub l-pad80 r-pad80">We deliver a truly premium experience to web professionals. We believe in a diverse range of personel to bring creative skills, out of the box thoughts, and ideas to the table.
</p>
</div>
</div>
<div class="row t-mgr50">
<div class="col-md-3 text-center">
<div class="services-box-3">
<i class="icon-picons-diamond"><i class="circle-border"></i></i>
<div class="content">
<h3>Ultra Responsive</h3>
<p>Nulla vehicula nisl cum soluta nobis est eligendi optio cumque nihil impeditnon enim fermentum veniam.</p>
<p><a href="#">read more →</a></p>
</div>
</div>
</div>
<div class="col-md-3 text-center">
<div class="services-box-3">
<i class="icon-picons-umbrella"><i class="circle-border"></i></i>
<div class="content">
<h3>Powerful Performance</h3>
<p>Nulla vehicula nisl cum soluta nobis est eligendi optio cumque nihil impeditnon enim fermentum veniam.</p>
<p><a href="#">read more →</a></p>
</div>
</div>
</div>
<div class="col-md-3 text-center">
<div class="services-box-3">
<i class="icon-picons-plane"><i class="circle-border"></i></i>
<div class="content">
<h3>Endless Possibilities</h3>
<p>Nulla vehicula nisl cum soluta nobis est eligendi optio cumque nihil impeditnon enim fermentum veniam.</p>
<p><a href="#">read more →</a></p>
</div>
</div>
</div>
<div class="col-md-3 text-center">
<div class="services-box-3">
<i class="icon-picons-support-2"><i class="circle-border"></i></i>
<div class="content">
<h3>Awesome Support</h3>
<p>Nulla vehicula nisl cum soluta nobis est eligendi optio cumque nihil impeditnon enim fermentum veniam.</p>
<p><a href="#">read more →</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--/ intro section -->
<!-- skills section -->
<div class="bg-gray">
<div class="row">
<div class="col-sm-6 col-xs-offset-1 pad-container r-pad50">
<h3 class="heading t-mgr60">Great Design & Incredible Features</h3>
<p class="lead r-pad50">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco. Etiam sit amet fringilla lacus. Pellentesque suscipit ante at ullamcorper pulvinar neque porttitor. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco. Etiam sit amet fringilla lacus. Pellentesque suscipit ante at ullamcorper pulvinar neque porttitor.</p>
</div>
<div class="col-sm-5"><img src="images/content/ph03.jpg" class="img-responsive" style="width:100%;" alt=""></div>
</div>
</div>
<!--/ skills section -->
<!-- project section -->
<div class="bg-white t-pad100 b-pad80">
<div class="container">
<div class="row col-md-12 text-center b-pad40">
<h2 class="heading"><span>Show</span>casing Our Work</h2>
<p class="h-sub">Lorem ipsum dolor consectetur elit sed do eiusmod tempor incididunt ut labore.</p>
</div>
</div>
<!-- projects Filter -->
<div class="filter">
<a href="#" class="filter active" data-filter="*">All projects</a>
<a href="#" class="filter" data-filter=".branding">Branding</a>
<a href="#" class="filter" data-filter=".design">Design</a>
<a href="#" class="filter" data-filter=".photography">Photography</a>
</div>
<!-- End projects Filter -->
<!-- projects Grid -->
<ul class="projects-grid hover-white hide-titles masonry" id="project-grid">
<!-- project Item -->
<li class="project-item mix photography">
<a href="images/content/portfolio/full-project-1.jpg" class="fancybox" data-rel="portfolio" data-title-id="img-01">
<div class="project-img">
<img src="images/content/portfolio/masonry/pm-01.jpg" class="img-responsive" alt="project" />
</div>
<div class="project-intro">
<h3 class="project-title">Project Title</h3>
<div class="project-descr">
Project Desc
</div>
</div>
</a>
</li>
<!-- End project Item -->
<!-- project Item -->
<li class="project-item mix branding">
<a href="portfolio-half.html">
<div class="project-img">
<img class="project-img img-responsive" src="images/content/portfolio/p-01.jpg" alt="project" />
</div>
<div class="project-intro">
<h3 class="project-title">Project Title</h3>
<div class="project-descr">
Project Desc
</div>
</div>
</a>
</li>
<!-- End project Item -->
<!-- project Item -->
<li class="project-item mix branding design">
<a href="portfolio-half.html">
<div class="project-img">
<img class="project-img img-responsive" src="images/content/portfolio/masonry/pm-02.jpg" alt="project" />
</div>
<div class="project-intro">
<h3 class="project-title">Project Title</h3>
<div class="project-descr">
Project Desc
</div>
</div>
</a>
</li>
<!-- End project Item -->
<!-- project Item -->
<li class="project-item mix design photography">
<a href="portfolio-half.html">
<div class="project-img">
<img class="project-img img-responsive" src="images/content/portfolio/p-02.jpg" alt="project" />
</div>
<div class="project-intro">
<h3 class="project-title">Project Title</h3>
<div class="project-descr">
Project Desc
</div>
</div>
</a>
</li>
<!-- End project Item -->
<!-- project Item -->
<li class="project-item mix design">
<a href="images/content/portfolio/full-project-2.jpg" class="fancybox" data-rel="portfolio" data-title-id="img-02">
<div class="project-img">
<img class="project-img img-responsive" src="images/content/portfolio/p-03.jpg" alt="project" />
</div>
<div class="project-intro">
<h3 class="project-title">Project Title</h3>
<div class="project-descr">
Project Desc
</div>
</div>
</a>
</li>
<!-- End project Item -->
<!-- project Item -->
<li class="project-item mix design photography">
<a href="portfolio-half.html">
<div class="project-img">
<img class="project-img img-responsive" src="images/content/portfolio/masonry/pm-03.jpg" alt="project" />
</div>
<div class="project-intro">
<h3 class="project-title">Project Title</h3>
<div class="project-descr">
Project Desc
</div>
</div>
</a>
</li>
<!-- End project Item -->
<!-- project Item -->
<li class="project-item mix design">
<a href="portfolio-half.html">
<div class="project-img">
<img class="project-img img-responsive" src="images/content/portfolio/p-04.jpg" alt="project" />
</div>
<div class="project-intro">
<h3 class="project-title">Project Title</h3>
<div class="project-descr">
Project Desc
</div>
</div>
</a>
</li>
<!-- End project Item -->
<!-- project Item -->
<li class="project-item mix branding photography">
<a href="images/content/portfolio/full-project-3.jpg" class="fancybox" data-rel="portfolio" data-title-id="img-03">
<div class="project-img">
<img class="project-img img-responsive" src="images/content/portfolio/p-06.jpg" alt="project">
</div>
<div class="project-intro">
<h3 class="project-title">Project Title</h3>
<div class="project-descr">
Project Desc
</div>
</div>
</a>
</li>
<!-- End project Item -->
<!-- project Item -->
<li class="project-item mix design branding">
<a href="portfolio-half.html">
<div class="project-img">
<img src="images/content/portfolio/p-05.jpg" class="img-responsive" alt="project">
</div>
<div class="project-intro">
<h3 class="project-title">Project Title</h3>
<div class="project-descr">
Project Desc
</div>
</div>
</a>
</li>
<!-- End project Item -->
</ul>
<!-- End projects Grid -->
</div>
<!--/ project section -->
<!-- intro section -->
<div class="bg-white t-pad40 b-pad100">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="heading">Our Dedicated Team</h3>
<div class="clearfix"></div>
</div>
<div class="col-md-4">
<div class="services-box-2 left med">
<img src="images/content/team1.jpg" alt="" class="img-responsive">
<div class="content">
<h3>Pual Handrick - Managing Director</h3>
<p>Duis nec aliquet massa, sed dapibus mauris. Nulla vehicula nisl cum soluta nobis est eligendi. </p>
<div class="social-icons">
<ul>
<li><a href="#" class="twitter-alt"><i class="icon-twitter"></i></a></li>
<li><a href="#" class="facebook-alt"><i class="icon-facebook"></i></a></li>
<li><a href="#" class="google-alt"><i class="icon-gplus"></i></a></li>
<li><a href="#" class="linkedin-alt"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="services-box-2 left med active">
<img src="images/content/team2.jpg" alt="" class="small img-responsive">
<div class="content">
<h3>Susan Morgan - Senior Consultant</h3>
<p class="active">Duis nec aliquet massa, sed dapibus mauris. Nulla vehicula nisl cum soluta nobis est eligendi. </p>
<div class="social-icons">
<ul>
<li><a href="#" class="twitter-alt"><i class="icon-twitter"></i></a></li>
<li><a href="#" class="facebook-alt"><i class="icon-facebook"></i></a></li>
<li><a href="#" class="google-alt"><i class="icon-gplus"></i></a></li>
<li><a href="#" class="linkedin-alt"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="services-box-2 left med">
<img src="images/content/team3.jpg" alt="" class="small img-responsive">
<div class="content">
<h3>Steve Baker - Project Manager</h3>
<p>Duis nec aliquet massa, sed dapibus mauris. Nulla vehicula nisl cum soluta nobis est eligendi. </p>
<div class="social-icons">
<ul>
<li><a href="#" class="twitter-alt"><i class="icon-twitter"></i></a></li>
<li><a href="#" class="facebook-alt"><i class="icon-facebook"></i></a></li>
<li><a href="#" class="google-alt"><i class="icon-gplus"></i></a></li>
<li><a href="#" class="linkedin-alt"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--/ intro section -->
<!-- parallax section -->
<div class="parallax process">
<div class="container pad-container text-center">
<div class="parallax-conten">
<h3 class="color-white">Awesome Parallax Effect</h3>
<h1 class="t-mgr30 color-white fw600">Creativity is intelligence having fun</h1>
<p class="t-mgr40"><a class="btn btn-white-brd large" href="#" target="_self">Start a project with us</a></p>
</div>
</div>
</div>
<!--/ parallax section -->
<!-- activities section -->
<!-- blog posts -->
<div class="bg-white t-pad20 b-pad40">
<div class="container pad-container">
<div class="row col-md-12 text-center b-pad40">
<h2 class="heading"><span>Latest</span> from Blog</h2>
<p class="h-sub">Lorem ipsum dolor consectetur elit sed do eiusmod tempor incididunt ut labore.</p>
</div>
<div class="blog-grid">
<div class="row t-mgr60">
<!-- blog post 1 -->
<article class="col-sm-4">
<figure><a href="blog-single-post.html"><img src="images/content/img-blog-hom01.jpg" alt="" class="img-responsive" /></a></figure>
<section class="post-content">
<h2><a href="blog-single-post.html">Make an apple pie from scratch</a></h2>
<div class="meta">
<ul>
<li>14 April 2015</li>
<li><a href="#">Posted by Okathemes</a></li>
<li><a href="#">3 Comments</a></li>
</ul>
</div>
<p>In massa turpis ornare nec commodo non, auctor vel felis. Etiam pharetra, turpis nec sollicitudin cursus vestibulum varius hendrerit turpis quiseam cursus. [...]</p>
<a class="btn btn-gray-brd" href="blog-single-post-2.html" target="_self">Read More </a>
</section>
<div class="clearfix"></div>
</article>
<!--/ blog post 1 -->
<!-- blog post 2 -->
<article class="col-sm-4">
<!-- owl slider -->
<div class="owl-slider-wrapper">
<div class="owl-portfolio-slider owl-carousel">
<div class="item nomgr"> <img src="images/content/img-blog-hom02.jpg" alt="" /> </div>
<div class="item nomgr"> <img src="images/content/img-blog-hom03.jpg" alt="" /> </div>
</div>
<div class="owl-custom-nav"> <a class="slider-prev"></a> <a class="slider-next"></a> </div>
</div>
<!--/ owl slider -->
<div class="clearfix"></div>
<section class="post-content t-mgr40">
<h2 class=""><a href="blog-single-post.html">Glory comes from daring to begin</a></h2>
<div class="meta">
<ul>
<li>14 April 2015</li>
<li><a href="#">Posted by Okathemes</a></li>
<li><a href="#">3 Comments</a></li>
</ul>
</div>
<p>In massa turpis ornare nec commodo non, auctor vel felis. Etiam pharetra, turpis nec sollicitudin cursus vestibulum varius hendrerit turpis quiseam cursus. [...]</p>
<a class="btn btn-gray-brd" href="blog-single-post-2.html" target="_self">Read More </a>
</section>
<div class="clearfix"></div>
</article>
<!--/ blog post 2 -->
<!-- blog post 3 -->
<article class="col-sm-4">
<figure><a href="blog-single-post.html"><img src="images/content/img-blog-hom04.jpg" alt="" /></a></figure>
<section class="post-content">
<h2><a href="blog-single-post.html">Leaning toward success, not far</a></h2>
<div class="meta">
<ul>
<li>14 April 2015</li>
<li><a href="#">Posted by Okathemes</a></li>
<li><a href="#">3 Comments</a></li>
</ul>
</div>
<p>In massa turpis ornare nec commodo non, auctor vel felis. Etiam pharetra, turpis nec sollicitudin cursus vestibulum varius hendrerit turpis quiseam cursus. [...]</p>
<a class="btn btn-gray-brd" href="blog-single-post-2.html" target="_self">Read More </a>
</section>
<div class="clearfix"></div>
</article>
<!--/ blog post 3 -->
</div>
</div>
</div>
</div>
<!-- / blog posts -->
<!-- custom tab section -->
<div class="bg-white tab-block-hom">
<div class="container" data-appear-top-offset="-200" data-animated="fadeInUp">
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade in active clearfix" id="tab1">
<p class="title"><b>Responsive</b> <span>Layout</span></p>
<span>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco. </span>
</div>
<div class="tab-pane fade clearfix" id="tab2">
<p class="title"><b>Fully</b> Customizible</p>
<span>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco. </span>
</div>
<div class="tab-pane fade clearfix" id="tab3">
<p class="title"><b>Interactive</b> Elements</p>
<span>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco. </span>
</div>
<div class="tab-pane fade clearfix" id="tab4">
<p class="title"><b>Premium</b> Sliders</p>
<span>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco. </span>
</div>
<div class="tab-pane fade clearfix" id="tab5">
<p class="title"><b>Extensive</b> Documentation</p>
<span>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco. </span>
</div>
</div>
<ul id="myTab" class="nav nav-tabs">
<li class="active"><a href="#tab1" data-toggle="tab" ><i class="icon-picons-iphone"></i><span>Responsive</span></a></li>
<li><a href="#tab2" data-toggle="tab" ><i class="icon-picons-preferences"></i><span>Customizible</span></a></li>
<li><a href="#tab3" data-toggle="tab" ><i class="icon-picons-diagram"></i><span>Elements</span></a></li>
<li><a href="#tab4" data-toggle="tab" ><i class="icon-picons-layers"></i><span>Sliders</span></a></li>
<li><a href="#tab5" data-toggle="tab" ><i class="icon-picons-pencil"></i><span>Documentation</span></a></li>
</ul>
</div>
</div>
<!-- / custom tab section -->
<!-- fact section -->
<div class="bg-dark-gray">
<div class="row">
<div class="f-element hideme dontHide">
<div class="milestone-counter" data-perc="12459"> <span class="milestone-count highlight">0</span>
<div class="sep"> </div>
<div class="milestone-details">Clean Line Codes</div>
</div>
</div>
<div class="f-element hideme dontHide">
<div class="milestone-counter" data-perc="178"> <span class="milestone-count highlight">0</span>
<div class="sep"> </div>
<div class="milestone-details">Working Days</div>
</div>
</div>
<div class="f-element hideme dontHide">
<div class="milestone-counter" data-perc="1435"> <span class="milestone-count highlight">0</span>
<div class="sep"> </div>
<div class="milestone-details">Cups of Coffee</div>
</div>
</div>
<div class="f-element hideme dontHide">
<div class="milestone-counter" data-perc="235"> <span class="milestone-count highlight">0</span>
<div class="sep"> </div>
<div class="milestone-details">Template Options</div>
</div>
</div>
</div>
</div>
<!--/ fact section -->
<!-- client section -->
<div class="bg-white">
<div class="container pad-container">
<div class="row col-md-12 t-mgr30 text-center">
<h2 class="heading"><span>What</span> People Say About Us</h2>
<p class="h-sub">Lorem ipsum dolor consectetur elit sed do eiusmod tempor incididunt ut labore.</p>
</div>
<div class="clearfix"></div>
<div class="row">
<div class="col-md-12 b-mgr20 t-mgr30">
<div class="owl-testimonials owl-carousel">
<div class="item">
<div class="testimonials">
<p> “ Everything was thought out for your future needs. Plus, Evolve support is the best support I've ever experienced, I've receive and the author going out of their way to make amendments to the Theme to suit my needs. Everything was thought out for your future needs. Plus, Evolve support is the best support I've ever experienced, I've receive and the author going out of their way to make amendments to the Theme to suit my needs - thank you! ” </p>
<div class="clearfix t-mgr10"></div>
<img src="images/content/happy-clients-01.jpg" alt="" >
<h2> Susan Anthony - CEO </h2>
</div>
</div>
<div class="item">
<div class="testimonials">
<p> “ Plussone was thought out for your future needs. Plus, Plussone support is the best support I've ever experienced, I've receive and the author going out of their way to make amendments to the Theme to suit my needs, I've receive and the author going out of their way to make amendments to the Theme to suit my needs - thank you! ” </p>
<div class="clearfix t-mgr10"></div>
<img src="images/content/happy-clients-02.jpg" alt="">
<h2> James Walter - CFO </h2>
</div>
</div>
<div class="item">
<div class="testimonials">
<p> “ Splash was thought out for your future needs. Plus, Evolve support is the best support I've ever experienced, I've receive and the author going out of their way to make amendments to the Theme to suit my needs - thank you! ” </p>
<div class="clearfix t-mgr10"></div>
<img src="images/content/happy-clients-03.jpg" alt="">
<h2> Chris Roger - CTO </h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-gray">
<div class="container pad-container">
<div class="owl-clients carousel">
<div class="item"><img src="images/content/logo-01.png" alt=""></div>
<div class="item"><img src="images/content/logo-02.png" alt=""></div>
<div class="item"><img src="images/content/logo-03.png" alt=""></div>
<div class="item"><img src="images/content/logo-04.png" alt=""></div>
<div class="item"><img src="images/content/logo-05.png" alt=""></div>
<div class="item"><img src="images/content/logo-06.png" alt=""></div>
<div class="item"><img src="images/content/logo-07.png" alt=""></div>
<div class="item"><img src="images/content/logo-08.png" alt=""></div>
</div>
</div>
</div>
<!--/ client section -->
<!-- footer -->
<footer class="footer b-pad0">
<div class="container">
<div class="row">
<div class="col-sm-4 t-pad50">
<div class="widget r-pad30">
<h3 class="widget-title"><a class="logo" href="index.html">UL<span>T</span>RA</a> </h3>
<div class="clearfix"></div>
<p class="normal">Ultra porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci nobis est eligendi optio cumque nihil impedit.</p>
<p class="bold">900-321-4568 | [email protected]</p>
<p class="bold">6545 Gulberg St. Abbort Road</p>
<p class="bold">www.Ultra.com</p>
</div>
</div>
<div class="col-sm-4 t-pad50 ">
<div class="widget r-pad30">
<h4 class="fw600 b-mgr40">Latest Posts</h4>
<p><a href="#">Most important things are not things - <span class="bold">December 23</span> </a></p>
<hr>
<p><a href="#">Try hard you will get success - <span class="bold">December 18</span> </a></p>
<hr>
<p><a href="#">Having a plan feels good - <span class="bold">November 29</span> </a></p>
</div>
</div>
<div class="col-sm-4 t-pad50 ">
<div class="widget r-pad30 ftitle">
<h4 class="fw600 b-mgr40">Newsletter Signup</h4>
<div class="clearfix"></div>
<p>Ultra porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci.</p>
<form method="post" id="contact-form" action="#">
<input name="email" type="text" value="" placeholder="E-mail Address" class="alt"/>
<input type="submit" class="btn-submit alt" value="Sign up"/>
<div class="clearfix"></div>
</form>
<p class="small">* We don’t share your information with anyone. <br> Check out our <a href="#">Privacy Policy</a> for more details. </p>
</div>
</div>
</div>
</div>
</footer>
<!--/ footer -->
<div class="bg-white">
<div class="container t-pad20 b-pad10">
<div class="col-md-6 t-pad10 copyright">
<p class="bold">© 2016 Ultra. All rights reserved.</p>
</div>
<div class="col-md-6 text-right">
<div class="social-icons">
<ul>
<li><a href="#" class="twitter-alt" title="Twitter" data-rel="tooltip" data-placement="top"><i class="icon-twitter"></i></a></li>
<li><a href="#" class="facebook-alt" title="Facebook" data-rel="tooltip" data-placement="top"><i class="icon-facebook"></i></a></li>
<li><a href="#" class="google-alt" title="Google Plus" data-rel="tooltip" data-placement="top"><i class="icon-gplus"></i></a></li>
<li><a href="#" class="linkedin-alt" title="Linkedin" data-rel="tooltip" data-placement="top"><i class="icon-linkedin"></i></a></li>
<li><a href="#" class="dribbble-alt" title="Dribbble" data-rel="tooltip" data-placement="top"><i class="icon-dribbble"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--/content wrapper -->
<!-- search -->
<div class="overlay overlay-slidedown">
<button type="button" class="overlay-close">Close</button>
<div class="container">
<div class="row">
<div class="col-sm-12" style="margin-top:30%;">
<form action="http://ultrathemes.droppages.com/search-results.html" class="center-block" id="header-search-form" method="get">
<input type="text" id="header-search" name="s" value="Start Typing..." style="height:150px;" autocomplete="off" onFocus="if (this.value == 'Start Typing...')this.value = '';" onBlur="if (this.value == '')this.value = 'Start Typing...';" />
</form>
</div>
</div>
</div>
</div>
<!--/ search -->
<!-- JS Files
================================================== -->
<script src="js/jquery.min.js"></script>
<script src="js/jquery.themepunch.plugins.min.js"></script>
<script src="js/jquery.themepunch.revolution.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/jquery.inview.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/jquery.easytabs.min.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/jquery.zflickrfeed.min.js"></script>
<script src="js/twitter-bootstrap-hover-dropdown.min.js"></script>
<script src="js/jquery.easy-pie-chart.js"></script>
<script src="js/classie.js"></script>
<script src="js/search.js"></script>
<script src="js/gizmo.js"></script>
<script src="js/scripts.js"></script>
</body>
<!-- Mirrored from ultrathemes.droppages.com/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 14 Dec 2016 13:41:45 GMT -->
</html>