-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-v8.html
913 lines (830 loc) · 62.1 KB
/
index-v8.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
<!Doctype html>
<!--[if IE 7 ]> <html lang="en-gb" class="isie ie7 oldie no-js"> <![endif]-->
<!--[if IE 8 ]> <html lang="en-gb" class="isie ie8 oldie no-js"> <![endif]-->
<!--[if IE 9 ]> <html lang="en-gb" class="isie ie9 no-js"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en-gb" class="no-js"> <!--<![endif]-->
<!-- Mirrored from wedesignthemes.com/html/priority/index-v8.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 29 Jan 2015 08:42:55 GMT -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Priority - Multipurpose HTML5 Template</title>
<meta name="description" content="">
<meta name="author" content="">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<!-- **CSS - stylesheets** -->
<link id="default-css" rel="stylesheet" href="style.css" type="text/css" media="all" />
<link id="shortcodes-css" rel="stylesheet" href="shortcodes.css" type="text/css" media="all"/>
<link id="skin-css" rel="stylesheet" href="skins/skyblue/style.css" type="text/css" media="all"/>
<!-- **Additional - stylesheets** -->
<link rel="stylesheet" href="responsive.css" type="text/css" media="all"/>
<link rel="stylesheet" href="css/meanmenu.css" type="text/css" media="all"/>
<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="css/animations.css" type="text/css" media="all" />
<!-- **Font Awesome** -->
<link rel="stylesheet" href="css/font-awesome.min.css" type="text/css" />
<!-- **Google - Fonts** -->
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="loader-wrapper">
<div id="loader-image"></div>
</div>
<!-- **Wrapper** -->
<div class="wrapper">
<div class="inner-wrapper">
<!-- **Top Bar** -->
<div class="top-bar">
<!-- **container - Starts** -->
<div class="container">
<!-- **top-menu - Starts** -->
<ul class="top-menu">
<li> <i class="fa fa-phone"></i> Any Questions? Call Us: <span> 1-223-355-2214 </span></li>
<li> <i class="fa fa-skype"></i> Skype: <a href="#" title="Design Themes"> DesignThemes </a></li>
</ul> <!-- **top-menu - End** -->
<!-- **top-right - Starts** -->
<div class="top-right">
<span>Get social with us!</span>
<ul class="dt-sc-social-icons">
<li> <a href="#" title="facebook"> <i class="fa fa-facebook"></i> </a> </li>
<li> <a href="#" title="twitter"> <i class="fa fa-twitter"></i> </a> </li>
<li> <a href="#" title="google-plus"> <i class="fa fa-google-plus"></i> </a> </li>
<li> <a href="#" title="pinterest"> <i class="fa fa-pinterest"></i> </a> </li>
<li> <a href="#" title="skype"> <i class="fa fa-skype"></i> </a> </li>
<li> <a href="#" title="youtube"> <i class="fa fa-youtube"></i> </a> </li>
</ul>
</div> <!-- **top-right - End** -->
</div> <!-- **container - End** -->
</div> <!-- **Top Bar - End** -->
<div id="header-wrapper">
<!-- **Header** -->
<header class="header">
<div class="container">
<!-- **Logo - End** -->
<div id="logo">
<a href="index-2.html" title="Priority"> <img src="images/logo.png" alt="logo"/> </a>
</div><!-- **Logo - End** -->
<div id="menu-container">
<!-- **Nav - Starts**-->
<nav id="main-menu">
<div id="dt-menu-toggle" class="dt-menu-toggle">
Menu
<span class="dt-menu-toggle-icon"></span>
</div>
<ul class="menu">
<li class="current_page_item menu-item-simple-parent"><a href="index-2.html">Home</a>
<ul class="sub-menu">
<li><a href="index-2.html">Home Example 1</a></li>
<li><a href="index-v2.html">Home Example 2</a></li>
<li><a href="index-v3.html">Home Example 3</a></li>
<li><a href="index-v4.html">Home Example 4</a></li>
<li><a href="index-v5.html">Home Example 5</a></li>
<li><a href="index-v6.html">Home Example 6</a></li>
<li><a href="index-v7.html">Home Example 7</a></li>
<li class="current_page_item"><a href="index-v8.html">Home Example 8</a></li>
<li><a href="one-page.html">One page Layout</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-megamenu-parent megamenu-4-columns-group menu-item-depth-0"><a href="about.html">About</a>
<div class="megamenu-child-container">
<ul class="sub-menu">
<li class="menu-item-with-widget-area">
<a href="#">About us</a>
<p>We are the best in what we do.</p>
<div class="menu-item-widget-area-container">
<ul>
<li class="widget widget_text">
<div class="textwidget">
<ul>
<li><a href="#">Our History</a></li>
<li><a href="#">Status & Progress</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Our Facilities</a></li>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Recent News</a></li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li class="menu-item-with-widget-area">
<a href="#">Miscellaneous</a>
<p>The following features we have</p>
<div class="menu-item-widget-area-container">
<ul>
<li class="widget widget_text">
<div class="textwidget">
<ul>
<li><a href="#">Progress Bars</a></li>
<li><a href="#">Side Tabs</a></li>
<li><a href="#">Status Bars</a></li>
<li><a href="#">Accordions & Tabs</a></li>
<li><a href="#">Donut Charts</a></li>
<li><a href="#">Pricing Tables</a></li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li class="menu-item-with-widget-area">
<a href="#">Home Page Design</a>
<p>The following features we have</p>
<div class="menu-item-widget-area-container">
<ul>
<li class="widget widget_text">
<div class="textwidget">
<ul>
<li><a href="#">Multipurpose Version 1</a></li>
<li><a href="#">Multipurpose Version 2</a></li>
<li><a href="#">Multipurpose Version 3</a></li>
<li><a href="#">Shop Page</a></li>
<li><a href="#">Portfolio Page</a></li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li class="menu-item-with-widget-area">
<a href="#">Features</a>
<p>The following features we have</p>
<div class="menu-item-widget-area-container">
<ul>
<li class="widget widget_text">
<div class="textwidget">
<ul>
<li><a href="#">100% Fully Responsive</a></li>
<li><a href="#">Boxed and Wide Versions</a></li>
<li><a href="#">10 Unique Home Page Options</a></li>
<li><a href="#">Font Awesome Icons</a></li>
<li><a href="#">Valid HTML5 and CSS3</a></li>
</ul>
</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-simple-parent"><a href="tabs-accordions.html">Pages</a>
<ul class="sub-menu">
<li><a href="team.html"> Team </a></li>
<li><a href="services.html"> Services </a></li>
<li><a href="pricing-table.html"> Pricing </a></li>
<li class="menu-item-simple-parent menu-item-depth-0"><a href="headers.html">Headers</a>
<ul class="sub-menu">
<li><a href="headers.html">Header 1</a></li>
<li><a href="header2.html">Header 2</a></li>
<li><a href="header3.html">Header 3</a></li>
<li><a href="header4.html">Header 4</a></li>
<li><a href="header5.html">Header 5</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="tabs-accordions.html"> Shortcodes </a></li>
<li><a href="miscellaneous.html"> Miscellaneous </a></li>
<li><a href="side-navigation.html"> Side Navigation </a></li>
<li><a href="coming-soon.html"> Coming Soon </a></li>
<li><a href="login.html"> Login </a></li>
<li><a href="register.html"> Register </a></li>
<li><a href="404-page.html"> 404 - page </a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-megamenu-parent megamenu-4-columns-group menu-item-depth-0"><a href="blog-with-rhs.html">Blog</a>
<div class="megamenu-child-container">
<ul class="sub-menu">
<li><a href="blog.html"> I Column</a>
<ul class="sub-menu">
<li><a href="blog.html">Fullwidth</a></li>
<li><a href="blog-with-lhs.html">With Left Sidebar</a></li>
<li><a href="blog-with-rhs.html">With Right Sidebar</a></li>
<li><a href="blog-with-pagination.html">With Pagination</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="blog-2-column.html"> II Column</a>
<ul class="sub-menu">
<li><a href="blog-2-column.html">Fullwidth</a></li>
<li><a href="blog-2-column-with-lhs.html">With Left Sidebar</a></li>
<li><a href="blog-2-column-with-rhs.html">With Right Sidebar</a></li>
<li><a href="blog-2-column-with-pagination.html">With Pagination</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="blog-masonry.html"> Blog Masonry</a>
<ul class="sub-menu">
<li><a href="blog-masonry.html">Fullwidth</a></li>
<li><a href="blog-masonry-with-lhs.html">With Left Sidebar</a></li>
<li><a href="blog-masonry-with-rhs.html">With Right Sidebar</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="blog-detail.html"> Single Post </a>
<ul class="sub-menu">
<li><a href="blog-detail.html">Fullwidth</a></li>
<li><a href="blog-detail-with-left-sidebar.html">With Left Sidebar</a></li>
<li><a href="blog-detail-with-right-sidebar.html">With Right Sidebar</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
</ul>
</div>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-megamenu-parent megamenu-5-columns-group menu-item-depth-0"><a href="portfolio-4-column-with-space.html">Portfolio</a>
<div class="megamenu-child-container">
<ul class="sub-menu">
<li><a href="portfolio-1-column-without-space.html"> I Column</a>
<ul class="sub-menu">
<li><a href="portfolio.html">Fullwidth</a></li>
<li><a href="portfolio-with-lhs.html">With Left Sidebar</a></li>
<li><a href="portfolio-with-rhs.html">With Right Sidebar</a></li>
<li><a href="portfolio-without-space.html">Without Space</a></li>
<li><a href="portfolio-with-pagination.html">With Pagination</a></li>
<li><a href="portfolio-without-filter.html">Without Filter</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="portfolio-2-column-without-space.html"> II Column</a>
<ul class="sub-menu">
<li><a href="portfolio-2-column-with-space.html">Fullwidth</a></li>
<li><a href="portfolio-2-column-with-lhs.html">With Left Sidebar</a></li>
<li><a href="portfolio-2-column-with-rhs.html">With Right Sidebar</a></li>
<li><a href="portfolio-2-column-without-space.html">Without Space</a></li>
<li><a href="portfolio-2-column-with-pagination.html">With Pagination</a></li>
<li><a href="portfolio-2-column-without-filter.html">Without Filter</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="portfolio-3-column-without-space.html"> III Column</a>
<ul class="sub-menu">
<li><a href="portfolio-3-column-with-space.html">Fullwidth</a></li>
<li><a href="portfolio-3-column-with-lhs.html">With Left Sidebar</a></li>
<li><a href="portfolio-3-column-with-rhs.html">With Right Sidebar</a></li>
<li><a href="portfolio-3-column-without-space.html">Without Space</a></li>
<li><a href="portfolio-3-column-with-pagination.html">With Pagination</a></li>
<li><a href="portfolio-3-column-without-filter.html">Without Filter</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="portfolio-4-column-without-space.html"> IV Column</a>
<ul class="sub-menu">
<li><a href="portfolio-4-column-with-space.html">Fullwidth</a></li>
<li><a href="portfolio-4-column-with-lhs.html">With Left Sidebar</a></li>
<li><a href="portfolio-4-column-with-rhs.html">With Right Sidebar</a></li>
<li><a href="portfolio-4-column-without-space.html">Without Space</a></li>
<li><a href="portfolio-4-column-with-pagination.html">With Pagination</a></li>
<li><a href="portfolio-4-column-without-filter.html">Without Filter</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="portfolio-detail.html"> Gallery Single</a>
<ul class="sub-menu">
<li><a href="portfolio-detail-v2.html">Fullwidth</a></li>
<li><a href="portfolio-detail.html">Left Gallery</a></li>
<li><a href="portfolio-detail-v3.html">Right Gallery</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
</ul>
</div>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-simple-parent"><a href="shop.html">Shop</a>
<ul class="sub-menu">
<li><a href="shop.html">Shop Pages</a>
<ul class="sub-menu">
<li><a href="shop-without-sidebar.html">Without Sidebar</a></li>
<li><a href="shop.html">With Sidebar</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="shop-cart.html">Cart</a></li>
<li><a href="shop-checkout.html">Checkout</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-simple-parent"><a href="contact.html">Contact</a>
<ul class="sub-menu">
<li><a href="contact.html">Contact Layout 1</a></li>
<li><a href="contact-v2.html">Contact Layout 2</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
</ul>
</nav>
<!-- **Nav - End**-->
</div>
</div>
</header><!-- **Header - End** -->
</div>
<!-- **Main - Starts** -->
<div id="main">
<!-- Slider-->
<div class="slider-wrapper">
<ul class="main-slider">
<li><img src="images/slider1.jpg" alt="slider-image"></li>
<li><img src="images/slider4.jpg" alt="slider-image"></li>
<li><img src="images/slider3.jpg" alt="slider-image"></li>
<li><img src="images/slider2.jpg" alt="slider-image"></li>
</ul>
<div class="slide-controls-wrapper dt-sc-hr-border">
<!-- **container - Starts** -->
<div class="container">
<div class="slide-controls">
<!-- **column - Starts** -->
<div class="column dt-sc-one-fourth no-space first">
<!-- **dt-sc-ico-content type6 - Starts** -->
<div class="dt-sc-ico-content type10">
<!-- **icon - Starts** -->
<div class="icon">
<span class="fa fa-film"></span>
</div> <!-- **icon - Ends** -->
<h4> <a href="#"> Videos in Slider </a> </h4>
<p>Need Videos in Slider? Here it is</p>
</div> <!-- **dt-sc-ico-content type6 - Ends** -->
</div> <!-- **column - Ends** -->
<!-- **column - Starts** -->
<div class="column dt-sc-one-fourth no-space">
<!-- **dt-sc-ico-content type6 - Starts** -->
<div class="dt-sc-ico-content type10">
<!-- **icon - Starts** -->
<div class="icon">
<span class="fa fa-trophy"> </span>
</div> <!-- **icon - Ends** -->
<h4> <a href="#"> Awesome Animations </a> </h4>
<p>Explore Number of Effects </p>
</div> <!-- **dt-sc-ico-content type6 - Ends** -->
</div> <!-- **column - Ends** -->
<!-- **column - Starts** -->
<div class="column dt-sc-one-fourth no-space">
<!-- **dt-sc-ico-content type6 - Starts** -->
<div class="dt-sc-ico-content type10">
<!-- **icon - Starts** -->
<div class="icon">
<span class="fa fa-flash"> </span>
</div> <!-- **icon - Ends** -->
<h4> <a href="#"> Easy & Slide Creation </a> </h4>
<p>Need Videos in Slider? Here it is</p>
</div> <!-- **dt-sc-ico-content type6 - Ends** -->
</div> <!-- **column - Ends** -->
<!-- **column - Starts** -->
<div class="column dt-sc-one-fourth no-space">
<!-- **dt-sc-ico-content type6 - Starts** -->
<div class="dt-sc-ico-content type10">
<!-- **icon - Starts** -->
<div class="icon">
<span class="fa fa-lightbulb-o"></span>
</div> <!-- **icon - Ends** -->
<h4> <a href="#"> Innovative Ideas </a> </h4>
<p>Explore Number of Effects</p>
</div> <!-- **dt-sc-ico-content type6 - Ends** -->
</div> <!-- **column - Ends** -->
</div> <!-- **container - End** -->
</div>
</div>
</div> <!-- Slider #2 Ends -->
<!-- **Full-width-section - Starts** -->
<div class="full-width-section">
<div class="dt-sc-hr-invisible"></div>
<div class="container">
<!-- **column - Starts** -->
<div class="column dt-sc-one-half first">
<div class="hr-title dt-sc-hr-invisible-small">
<h3>Priority Features</h3>
<div class="title-sep">
</div>
</div>
<!-- **dt-sc-ico-content type3 - Starts** -->
<div class="dt-sc-ico-content type3 animate" data-animation="fadeInUp" data-delay="100">
<div class="icon">
<span class="fa fa-inbox"></span>
</div>
<h4> <a href="#"> Full of Options and Features </a> </h4>
<p>Donec sodales sagittis magna. Rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>
</div> <!-- **dt-sc-ico-content type3 - Ends** -->
<!-- **dt-sc-ico-content type3 - Starts** -->
<div class="dt-sc-ico-content type3 animate" data-animation="fadeInUp" data-delay="200">
<div class="icon">
<span class="fa fa-tablet"></span>
</div>
<h4> <a href="#"> Highly Responsive </a> </h4>
<p>Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. </p>
</div> <!-- **dt-sc-ico-content type3 - Ends** -->
<!-- **dt-sc-ico-content type3 - Starts** -->
<div class="dt-sc-ico-content type3 animate" data-animation="fadeInUp" data-delay="300">
<div class="icon">
<span class="fa fa-th"></span>
</div>
<h4> <a href="#"> 1170px Grid Responsiveness </a> </h4>
<p>Sed consequat, leo eget bibendum sodales. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper liberoneque sed ipsum.</p>
</div> <!-- **dt-sc-ico-content type3 - Ends** -->
<!-- **dt-sc-ico-content type3 - Starts** -->
<div class="dt-sc-ico-content type3 animate" data-animation="fadeInUp" data-delay="400">
<div class="icon">
<span class="fa fa-html5"></span>
</div>
<h4> <a href="#"> HTML5 & CSS3 Awesomeness </a> </h4>
<p>Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>
</div> <!-- **dt-sc-ico-content type3 - Ends** -->
</div> <!-- **column - Ends** -->
<!-- **column - Starts** -->
<div class="column dt-sc-one-half">
<!-- **hr-title - Starts** -->
<div class="hr-title dt-sc-hr-invisible-small">
<h3>Our Skills</h3>
<!-- **title-sep - Starts** -->
<div class="title-sep">
</div> <!-- **title-sep - Ends** -->
</div> <!-- **hr-title - Ends** -->
<div class="skill-detail">
<p>Proactively envisioned multimedia based expertise and cross-media growth strategies. Seamlessly visualize quality intellectual capital without superior collaboration and idea-sharing. Holistically pontificate installed base portals after maintainable products are produced and shared leading to fantastic results.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas fermentum semper porta. Vivamus lacinia diam nec dignissim imperdiet. In purus</p>
</div>
<div class="dt-sc-progress-bar type2">
<div class="dt-sc-bar-text"> Photoshop - <span> 50% </span> </div>
<div class="dt-sc-progress">
<div data-value="50" class="dt-sc-bar skyblue"> </div>
</div>
<div class="dt-sc-bar-text">HTML5 & CSS3 - <span> 60% </span> </div>
<div class="dt-sc-progress">
<div data-value="60" class="dt-sc-bar skyblue"> </div>
</div>
<div class="dt-sc-bar-text">PHP - <span> 65% </span> </div>
<div class="dt-sc-progress">
<div data-value="65" class="dt-sc-bar skyblue"> </div>
</div>
<div class="dt-sc-bar-text">Wordpress - <span> 70% </span> </div>
<div class="dt-sc-progress">
<div data-value="70" class="dt-sc-bar skyblue"> </div>
</div>
<div class="dt-sc-bar-text">Shopify - <span> 80% </span> </div>
<div class="dt-sc-progress">
<div data-value="80" class="dt-sc-bar skyblue"> </div>
</div>
<div class="dt-sc-bar-text">BigCommerce - <span> 90% </span> </div>
<div class="dt-sc-progress">
<div data-value="90" class="dt-sc-bar skyblue"> </div>
</div>
<div class="dt-sc-bar-text">Customer Support - <span> 100% </span> </div>
<div class="dt-sc-progress">
<div data-value="100" class="dt-sc-bar skyblue"> </div>
</div>
</div>
</div> <!-- **column - Ends** -->
<div class="dt-sc-margin15"></div>
</div> <!-- **container - Ends** -->
</div><!-- **Full-width-section - Ends** -->
<!-- **intro-text - starts** -->
<div class="parallax intro-text type4 full-width-bg">
<!-- **container - Starts** -->
<div class="container">
<div class="column dt-sc-two-third first">
<h2>Simply the best theme around</h2>
<p>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 laboris nisi ut aliquip ex ea commodo consequat. </p>
</div>
<div class="column dt-sc-one-third">
<a class="dt-sc-button large" href="#">Purchase this theme <span class="fa fa-angle-right"></span></a>
</div>
</div> <!-- **container - Ends** -->
</div> <!-- **intro-text - Ends** -->
<!-- **Full-width-section - Starts** -->
<div class="full-width-section">
<div class="dt-sc-margin50"></div>
<div class="container">
<!-- **column - Starts** -->
<div class="column dt-sc-one-half first">
<!-- **hr-title - Starts** -->
<div class="hr-title dt-sc-hr-invisible-small">
<h2>Recent Gallery</h2>
<!-- **title-sep - Starts** -->
<div class="title-sep">
</div> <!-- **title-sep - Ends** -->
</div> <!-- **hr-title - Ends** -->
<!-- **recent-gallery-container - Starts** -->
<div class="recent-gallery-container">
<!-- **recent-gallery - Starts** -->
<ul class="recent-gallery">
<li> <img src="images/image-5.jpg" alt="image"/> </li>
<li> <img src="images/image-2.jpg" alt="image"/> </li>
<li> <img src="images/image-3.jpg" alt="image"/> </li>
<li> <img src="images/image-1.jpg" alt="image"/> </li>
<li> <img src="images/image-4.jpg" alt="image"/> </li>
</ul> <!-- **recent-gallery - Ends** -->
<!-- **bx-pager - Starts** -->
<div id="bx-pager">
<a href="#" data-slide-index='0'><img src='images/image-5.jpg' alt='image' /></a>
<a href="#" data-slide-index='1'><img src='images/image-2.jpg' alt='image' /></a>
<a href="#" data-slide-index='2'><img src='images/image-3.jpg' alt='image' /></a>
<a href="#" data-slide-index='3'><img src='images/image-1.jpg' alt='image' /></a>
<a href="#" data-slide-index='4'><img src='images/image-4.jpg' alt='image' /></a>
</div> <!-- **bx-pager - Ends** -->
</div><!-- **recent-gallery-container - Ends** -->
</div> <!-- **column - Ends** -->
<!-- **column - Starts** -->
<div class="column dt-sc-one-half">
<!-- **hr-title - Starts** -->
<div class="hr-title dt-sc-hr-invisible-small">
<h2>About Priority</h2>
<!-- **title-sep - Starts** -->
<div class="title-sep">
</div> <!-- **title-sep - Ends** -->
</div> <!-- **hr-title - Ends** -->
<!-- **dt-sc-tabs-container - Starts** -->
<div class="dt-sc-tabs-container">
<!-- **dt-sc-tabs-frame - Starts** -->
<ul class="dt-sc-tabs-frame">
<li> <a href="#">Statics of Jade in Years</a> </li>
<li> <a href="#">Abstracts</a> </li>
<li> <a href="#">Tab Sample</a> </li>
</ul> <!-- **dt-sc-tabs-frame - Ends** -->
<!-- **dt-sc-tabs-frame-content - Starts** -->
<div class="dt-sc-tabs-frame-content">
<div class="thumb"> <img src="images/image-11.jpg" alt="image"/> </div>
<h4>Trademark for Years</h4>
<p>Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>
<div class="dt-sc-hr-invisible-very-small"></div>
<p> <strong>Priority</strong> has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, </p>
<div class="dt-sc-margin10"></div>
<p>Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui.</p>
</div> <!-- **dt-sc-tabs-frame-content - Ends** -->
<!-- **dt-sc-tabs-frame-content - Starts** -->
<div class="dt-sc-tabs-frame-content">
<div class="thumb"> <img src="images/image-12.jpg" alt="image"/> </div>
<h4>Abstracts</h4>
<p>Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>
<div class="dt-sc-hr-invisible-very-small"></div>
<p> <strong>Priority</strong> has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. Aldus PageMaker including versions of Lorem Ipsum. </p>
<div class="dt-sc-margin10"></div>
</div> <!-- **dt-sc-tabs-frame-content - Ends** -->
<!-- **dt-sc-tabs-frame-content - Starts** -->
<div class="dt-sc-tabs-frame-content">
<h4>Tab Sample</h4>
<p>Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>
<div class="dt-sc-hr-invisible-very-small"></div>
<p> <strong>Priority</strong> has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. Aldus PageMaker including versions of Lorem Ipsum. </p>
<div class="dt-sc-margin10"></div>
</div> <!-- **dt-sc-tabs-frame-content - Ends** -->
</div> <!-- **dt-sc-tabs-container - Ends** -->
</div> <!-- **column - Ends** -->
</div> <!-- **container - Ends** -->
<div class="dt-sc-hr-invisible-small"></div>
</div> <!-- **Full-width-section - Ends** -->
<!-- **Full-width-section - Starts** -->
<div class="full-width-section grey">
<!-- **container - Starts** -->
<div class="container">
<div class="dt-sc-margin55"></div>
<h2 class="aligncenter">Our Brands</h2>
<p class="middle-align">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical<br/> Latin literature from 45 BC, making it over 2000 years old. </p>
<div class="dt-sc-hr-invisible"></div>
<div class="column dt-sc-one-half first">
<!-- **dt-sc-testimonial-wrapper type2 - Starts** -->
<div class="dt-sc-testimonial-wrapper type3">
<!-- **testimonial-carousel - Starts** -->
<ul class="dt-sc-testimonial-carousel">
<li>
<!-- **dt-sc-testimonial - Starts** -->
<div class="dt-sc-testimonial">
<h5>"This template is composed of colors. A great deal if you want a<br/> colorful & vibrant website for your business or portfolio. I highly<br/> recommend it."</h5>
<!-- **author - Starts** -->
<div class="author">
<img src="images/author4.jpg" alt="image"/>
</div> <!-- **author - Ends** -->
<h6>Jeniffer Conolley</h6>
<cite>Callahan Industry</cite>
</div> <!-- **dt-sc-testimonial - Ends** -->
</li>
<li>
<!-- **dt-sc-testimonial - Starts** -->
<div class="dt-sc-testimonial">
<h5>" This template is composed of colors. A great deal if you want a colorful & vibrant website for your business or portfolio.<br/>I highly recommend it. A great deal."</h5>
<!-- **author - Starts** -->
<div class="author">
<img src="images/author3.jpg" alt="image"/>
</div> <!-- **author - Ends** -->
<h6>Sean Bean</h6>
<cite>Callahan Industry</cite>
</div> <!-- **dt-sc-testimonial - Ends** -->
</li>
<li>
<!-- **dt-sc-testimonial - Starts** -->
<div class="dt-sc-testimonial">
<h5>" This template is composed of colors. A great deal if you want a colorful & vibrant website for your business or portfolio.<br/>I highly recommend it. Website for your business."</h5>
<!-- **author - Starts** -->
<div class="author">
<img src="images/author2.jpg" alt="image"/>
</div> <!-- **author - Ends** -->
<h6>Mathew Braveheart</h6>
<cite>Callahan Industry</cite>
</div> <!-- **dt-sc-testimonial - Ends** -->
</li>
</ul> <!-- **testimonial-carousel - Ends** -->
<!-- **carousel-arrows - Starts** -->
<div class="carousel-arrows">
<a href="#" class="testimonial-prev"> prev </a>
<a href="#" class="testimonial-next"> next </a>
</div> <!-- **carousel-arrows - Ends** -->
</div> <!-- **dt-sc-testimonial-wrapper type3 - Ends** -->
</div> <!-- **column - Ends** -->
<div class="column dt-sc-one-half">
<div class="dt-sc-margin10"></div>
<!-- **dt-sc-partner-carousel-wrapper - Starts** -->
<div class="dt-sc-partner-carousel-wrapper">
<div class="partner-carousel">
<a href="#"><img src="images/client-images/client-logo1.png" alt="image"/></a>
<a href="#"><img src="images/client-images/client-logo2.png" alt="image"/></a>
<a href="#"><img src="images/client-images/client-logo3.png" alt="image"/></a>
<a class="clear" href="#"><img src="images/client-images/client-logo4.png" alt="image"/></a>
<a href="#"><img src="images/client-images/client-logo5.png" alt="image"/></a>
<a href="#"><img src="images/client-images/client-logo6.png" alt="image"/></a>
</div>
</div> <!-- **dt-sc-partner-carousel-wrapper - Ends** -->
<p>Sed consequat, leo eget bibendum sodales. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form.</p>
</div>
<div class="dt-sc-margin90"></div>
</div> <!-- **container - Ends** -->
</div> <!-- **Full-width-section - Ends** -->
<!-- **Full-width-section - Starts** -->
<div class="parallax full-width-section icon-content-bg">
<div class="dt-sc-margin100"></div>
<div class="container">
<div class="column dt-sc-one-fourth first">
<div class="dt-sc-ico-content type8">
<div class="icon">
<img src="images/admin1-hover.png" alt="admin"/>
<img src="images/admin1.png" alt="admin"/>
</div>
<h4> <a href="#"> Awesome Features </a> </h4>
<p>Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. </p>
<a class="read-more" href="#"> Read More <span class="fa fa-long-arrow-right"></span> </a>
</div>
</div>
<div class="column dt-sc-one-fourth">
<div class="dt-sc-ico-content type8">
<div class="icon">
<img src="images/watch-hover.png" alt="tablet"/>
<img src="images/watch.png" alt="tablet"/>
</div>
<h4> <a href="#"> 100% Responsive </a> </h4>
<p>Etiam sit amet orci eget eros fauc ibus la tincidunt. Duis leo. Sed fringilla mauris sit amet nibh.</p>
<a class="read-more" href="#"> Read More <span class="fa fa-long-arrow-right"></span> </a>
</div>
</div>
<div class="column dt-sc-one-fourth">
<div class="dt-sc-ico-content type8">
<div class="icon">
<img src="images/power-gears1-hover.png" alt="plane"/>
<img src="images/power-gears1.png" alt="plane"/>
</div>
<h4> <a href="#"> Media Support </a> </h4>
<p>Vestibulum purus quam, scelerisque ut, mollis sed, nonummy id, metus. Nullam accumsan lorem in dui.</p>
<a class="read-more" href="#"> Read More <span class="fa fa-long-arrow-right"></span> </a>
</div>
</div>
<div class="column dt-sc-one-fourth">
<div class="dt-sc-ico-content type8">
<div class="icon">
<img src="images/brush-bucket-hover.png" alt="flag"/>
<img src="images/brush-bucket.png" alt="flag"/>
</div>
<h4> <a href="#"> Extremely Flexible </a> </h4>
<p>Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. </p>
<a class="read-more" href="#"> Read More <span class="fa fa-long-arrow-right"></span> </a>
</div>
</div>
</div>
<div class="dt-sc-hr-invisible"></div>
</div> <!-- **Full-width-section - Ends** -->
</div><!-- **Main - Ends** -->
<!-- **Footer** -->
<footer id="footer">
<div class="footer-widgets-wrapper">
<div class="container">
<div class="column dt-sc-one-fourth first">
<aside class="widget widget_text">
<h3 class="widget-title">Contact <span class="wlast"> Us </span><span class="small-line"> </span></h3>
<p> <i class="fa fa-phone"></i> <span>Phone:</span> +22 004 324 1124 </p>
<p> <i class="fa fa-print"></i> <span>Fax:</span> +22 004 324 1124 </p>
<p> <i class="fa fa-envelope"></i> <span> Email:</span> <a href="#">priority@gmail.com</a> </p>
<p> <i class="fa fa-globe"></i> <span>Web:</span> <a href="#">www.Wedesignthemes.com</a> </p>
<p> <i class="fa fa-location-arrow"></i> <span>58, Thomson Street, Edison Avenue,
Baltimore, USA</span> </p>
</aside>
</div>
<div class="column dt-sc-one-fourth">
<aside class="widget widget_popular_entries">
<h3 class="widget-title">Popular <span class="wlast">Posts</span><span class="small-line"> </span></h3>
<div class="recent-property-widget">
<ul>
<li> <a class="thumb" href="#"><img src="images/recent-photo1.jpg" alt="image"/></a>
<h6><a href="#">Here comes the title for
the post with 2 lines</a></h6>
<div class="entry-meta">
<p><span class="fa fa-calendar"></span>03Aug2012</p>
<p><span class="fa fa-user"></span><a href="#">admin</a></p>
</div>
</li>
<li> <a class="thumb" href="#"><img src="images/recent-photo2.jpg" alt="image"/></a>
<h6><a href="#">Here comes the title for
the post with 2 lines</a></h6>
<div class="entry-meta">
<p><span class="fa fa-calendar"></span>03Aug2012</p>
<p><span class="fa fa-user"></span><a href="#">admin</a></p>
</div>
</li>
</ul>
</div>
</aside>
</div>
<div class="column dt-sc-one-fourth">
<aside class="widget widget_tweetbox">
<h3 class="widget-title">Twitter <span class="wlast">Feeds</span><span class="small-line"> </span></h3>
<div class="tweet_list"> </div>
</aside>
</div>
<div class="column dt-sc-one-fourth">
<aside class="widget mailchimp">
<h3 class="widget-title">Newsletter <span class="wlast">Subscription</span><span class="small-line"> </span></h3>
<p>But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was of the great explorer.</p>
<form method="post" class="mailchimp-form" name="frmNewsletter" action="http://wedesignthemes.com/html/priority/php/subscribe.php">
<p><span class="fa fa-envelope"></span>
<input type="email" placeholder="Enter Email" name="email" value="" required/>
<input type="submit" name="submit" class="dt-sc-button" value="Subscribe" /></p>
</form>
<div id="ajax_newsletter_msg"></div>
<div class="dt-sc-hr-invisible-small"></div>
<ul class="dt-sc-social-icons">
<li><a class="dt-sc-tooltip-top facebook" href='#' target="_blank" title="Facebook"> <i class="fa fa-facebook"></i> </a></li>
<li><a class="dt-sc-tooltip-top twitter" href='#' target="_blank" title="Twitter"> <i class="fa fa-twitter"></i> </a></li>
<li><a class="dt-sc-tooltip-top google-plus" href='#' target="_blank" title="Google-plus"> <i class="fa fa-google-plus"></i> </a></li>
<li><a class="dt-sc-tooltip-top pinterest" href='#' target="_blank" title="Pinterest"> <i class="fa fa-pinterest"></i> </a></li>
<li><a class="dt-sc-tooltip-top youtube" href='#' target="_blank" title="Youtube"> <i class="fa fa-youtube"></i> </a></li>
</ul>
</aside>
</div>
</div>
</div><!-- **footer-widgets-wrapper - End** -->
<div class="copyright">
<div class="container">
<p>Priority theme by iamdesigning. © 2015 <a href="#">BuddhaThemes</a></p>
<ul class="footer-links">
<li><a href="index-2.html">Home</a>/</li>
<li><a href="about.html">About</a>/</li>
<li><a href="tabs-accordions.html">Pages</a>/</li>
<li><a href="blog.html">Blog</a>/</li>
<li><a href="portfolio-3-column-without-space.html">Portfolio</a>/</li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</footer> <!-- **Footer - End** -->
</div><!-- **inner-wrapper - End** -->
</div><!-- **Wrapper - End** -->
<!-- **jQuery** -->
<script src="js/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="js/jquery-migrate.min.js"></script>
<script src="js/preloader.js" type="text/javascript"></script>
<script src="js/pace.min.js" type="text/javascript"></script>
<script src="js/jquery.tabs.min.js"></script>
<script src="js/jquery.tipTip.minified.js"></script>
<script src="js/jquery-easing-1.3.js" type="text/javascript"></script>
<script src="js/jquery.parallax-1.1.3.js" type="text/javascript"></script>
<script src="js/jquery.carouFredSel-6.2.1-packed.js" type="text/javascript"></script>
<script src="js/jquery.inview.js" type="text/javascript"></script>
<script src="js/jquery.bxslider.min.js" type="text/javascript"></script>
<script src="js/jquery.nav.js" type="text/javascript"></script>
<script src="js/jquery.jcarousel.min.js" type="text/javascript"></script>
<script src="js/jquery.isotope.min.js" type="text/javascript"></script>
<script src="js/jquery.prettyPhoto.js" type="text/javascript"></script>
<script src="js/masonry.pkgd.min.js" type="text/javascript"></script>
<script src="js/jquery.smartresize.js" type="text/javascript"></script>
<script src="js/responsive-nav.js" type="text/javascript"></script>
<script src="js/jquery.meanmenu.min.js" type="text/javascript"></script>
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="js/jquery.gmap.min.js"></script>
<!-- **Sticky Nav** -->
<script src="js/jquery.sticky.js" type="text/javascript"></script>
<!-- Style Picker Starts -->
<script src="js/jquery.cookie.js" type="text/javascript"></script>
<script src="js/controlpanel.js" type="text/javascript"></script>
<!-- Style Picker ends -->
<!-- **To Top** -->
<script src="js/jquery.ui.totop.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/twitter/jquery.tweet.min.js"></script>
<script src="js/jquery.viewport.js" type="text/javascript"></script>
<script type="text/javascript" src="js/jquery.validate.min.js"></script>
<script src="js/retina.js" type="text/javascript"></script>
<script src="js/custom.js" type="text/javascript"></script>
</body>
<!-- Mirrored from wedesignthemes.com/html/priority/index-v8.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 29 Jan 2015 08:44:42 GMT -->
</html>