-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
888 lines (832 loc) · 31.5 KB
/
index.html
File metadata and controls
888 lines (832 loc) · 31.5 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Sima</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!--[if lt IE 9]> <script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script> <![endif]-->
<!-- Place favicon.ico in the root directory -->
<link href='https://fonts.googleapis.com/css?family=Lato:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body >
<!-- start preloader -->
<div id="loader-wrapper">
<div class="logo"></div>
<div id="loader">
</div>
</div>
<!-- end preloader -->
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Start Header Section -->
<header class="main_menu_sec navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-12">
<div class="lft_hd">
<a href="index.html"><img src="img/logo.png" alt=""/></a>
</div>
</div>
<div class="col-lg-9 col-md-9 col-sm-12">
<div class="rgt_hd">
<div class="main_menu">
<nav id="nav_menu">
<button aria-controls="navbar" aria-expanded="false" data-target="#navbar" data-toggle="collapse" class="navbar-toggle collapsed" type="button">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div id="navbar">
<ul>
<li><a class="page-scroll" href="index.html">Home</a></li>
<li><a href="#">Our Another Page <i class="fa fa-angle-down"></i></a>
<ul>
<li><a class="page-scroll" href="#tm_sec">Our Team</a></li>
<li><a class="page-scroll" href="#tstm_sec">Our Testimonial</a></li>
<li><a class="page-scroll" href="#lts_sec">Our Latest Blog</a></li>
<li><a class="page-scroll" href="#pricing_sec">Pricing</a></li>
<li><a class="page-scroll" href="#clt_sec">Our Happy Client</a></li>
</ul>
</li>
<li><a href="#">Static Page<i class="fa fa-angle-down"></i></a>
<ul>
<li><a class="page-scroll" href="blog.html">Blog Page</a></li>
<li><a class="page-scroll" href="single.html">Single Blog Page</a></li>
</ul>
</li>
<li><a class="page-scroll" href="#abt_sec">About</a></li>
<li><a class="page-scroll" href="#skill_sec">Our Skill</a></li>
<li><a class="page-scroll" href="#pr_sec">Our Service</a></li>
<li><a class="page-scroll" href="#protfolio_sec">Our Portfolio</a></li>
<li><a class="page-scroll" href="#ctn_sec">Contact Us</a></li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- End Header Section -->
<!-- start slider Section -->
<section id="slider_sec">
<div class="container">
<div class="row">
<div class="slider">
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<div class="wrap_caption">
<div class="caption_carousel">
<h1>We are webeeo</h1>
<p>LOREM IPSUM DOLOR SIT AMET CONSECTE</p>
</div>
</div>
</div>
<div class="item">
<div class="wrap_caption">
<div class="caption_carousel">
<h1>We are Creative</h1>
<p>LOREM IPSUM DOLOR SIT AMET CONSECTE</p>
</div>
</div>
</div>
<div class="item ">
<div class="wrap_caption">
<div class="caption_carousel">
<h1>We Have Greate Team</h1>
<p>LOREM IPSUM DOLOR SIT AMET CONSECTE</p>
</div>
</div>
</div>
</div>
<!-- Controls -->
<a class="left left_crousel_btn" href="#carousel-example-generic" role="button" data-slide="prev">
<i class="fa fa-angle-left"></i>
<span class="sr-only">Previous</span>
</a>
<a class="right right_crousel_btn" href="#carousel-example-generic" role="button" data-slide="next">
<i class="fa fa-angle-right"></i>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- End slider Section -->
<!-- start about Section -->
<section id="abt_sec">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs12 ">
<div class="title_sec">
<h1>ABOUT</h1>
<h2>WE’RE BRANDING & DIGITAL STUDIO FROM VIET NAM</h2>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs12 ">
<div class="abt">
<p>Mauris luctus aliquet nunc quis consectetur. Curabitur elit massa, consequat vel velit sit amet, scelerisque hendrerit mi. Cras pellentesque sem turpis, quis interdum mi sagittis a. Donec mattis porttitor eleifend</p>
</div>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- start Counting section-->
<section id="counting_sec">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="counting_sl">
<i class="fa fa-user"></i>
<h2 class="counter">43,753</h2>
<h4>Happy Clients</h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="counting_sl">
<i class="fa fa-desktop"></i>
<h2 class="counter">20,210</h2>
<h4>Complete Project</h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="counting_sl">
<i class="fa fa-ticket"></i>
<h2 class="counter">43,753</h2>
<h4>Answered Tickets</h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="counting_sl">
<i class="fa fa-clock-o"></i>
<h2 class="counter">45,105</h2>
<h4>Development Hours</h4>
</div>
</div>
</div>
</div>
</section>
<!-- start progress bar Section -->
<section id="skill_sec">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs12 ">
<div class="title_sec">
<h1>Our Skill diagram</h1>
<h2>WE’RE BRANDING & DIGITAL STUDIO FROM VIET NAM</h2>
</div>
</div>
<div class="skills progress-bar1">
<ul class="col-md-6 col-sm-12 col-xs-12 wow fadeInLeft">
<li class="progress">
<div class="progress-bar" data-width="85">
Wordpress 85%
</div>
</li>
<li class="progress">
<div class="progress-bar" data-width="65">
Graphic Design 65%
</div>
</li>
<li class="progress">
<div class="progress-bar" data-width="90">
HTML/CSS Design 90%
</div>
</li>
<li class="progress">
<div class="progress-bar" data-width="60">
SEO 60%
</div>
</li>
</ul>
<ul class="col-md-6 col-sm-12 col-xs-12 wow fadeInRight">
<li class="progress">
<div class="progress-bar" data-width="75">
Agencying 75%
</div>
</li>
<li class="progress">
<div class="progress-bar" data-width="95">
App Development 95%
</div>
</li>
<li class="progress">
<div class="progress-bar" data-width="70">
IT Consultency 70%
</div>
</li>
<li class="progress">
<div class="progress-bar" data-width="90">
Theme Development 90%
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- End progress bar Section -->
<!-- start Service Section -->
<section id="pr_sec">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs12 ">
<div class="title_sec">
<h1>OUR Service</h1>
<h2>WE’RE BRANDING & DIGITAL STUDIO FROM VIET NAM</h2>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="service">
<i class="fa fa-globe"></i>
<h2>web Development</h2>
<div class="service_hoverly">
<i class="fa fa-globe"></i>
<h2>web Development</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempore ab odio quas , voluptate aspernatur!</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="service">
<i class="fa fa-paper-plane"></i>
<h2>E-mail marketing</h2>
<div class="service_hoverly">
<i class="fa fa-paper-plane"></i>
<h2>E-mail marketing</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempore ab odio quas , voluptate aspernatur!</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="service">
<i class="fa fa-wordpress"></i>
<h2>WordPress</h2>
<div class="service_hoverly">
<i class="fa fa-wordpress"></i>
<h2>WordPress</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempore ab odio quas , voluptate aspernatur!</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="service">
<i class="fa fa-paint-brush"></i>
<h2>Graphic Design</h2>
<div class="service_hoverly">
<i class="fa fa-paint-brush"></i>
<h2>Graphic Design</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempore ab odio quas , voluptate aspernatur!</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Service Section -->
<!-- start portfolio Section -->
<section id="protfolio_sec">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs12 ">
<div class="title_sec">
<h1>Our Portfolio</h1>
<h2>WE’RE BRANDING & DIGITAL STUDIO FROM VIET NAM</h2>
</div>
</div>
<div class="col-lg-12">
<div class="portfolio-filter text-uppercase text-center">
<ul class="filter">
<li class="active" data-filter="*">All</li>
<li data-filter=".web-design">Web Design</li>
<li data-filter=".graphic">Graphic</li>
<li data-filter=".photography">Photography</li>
<li data-filter=".motion-video">Motion video</li>
</ul>
</div>
<div class="all-portfolios">
<div class="col-sm-12 col-lg-12 col-md-12 col-xs-12 ">
<div class="single-portfolio web-design">
<img class="img-responsive" src="http://showwp.com/demos/porton/default/upload/p_06.jpg" alt="">
</div>
</div>
<div class="col-sm-12 col-lg-12 col-md-12 col-xs-12 ">
<div class="single-portfolio web-design">
<img class="img-responsive" src="http://showwp.com/demos/porton/default/upload/p_01.jpg" alt="">
</div>
</div>
<div class="col-sm-12 col-lg-12 col-md-12 col-xs-12 ">
<div class="single-portfolio web-design">
<img class="img-responsive" src="http://showwp.com/demos/porton/default/upload/p_02.jpg" alt="">
</div>
</div>
<div class="col-sm-12 col-lg-12 col-md-12 col-xs-12 ">
<div class="single-portfolio graphic">
<img class="img-responsive" src="http://showwp.com/demos/porton/default/upload/p_03.jpg" alt="">
</div>
</div>
<div class="col-sm-12 col-lg-12 col-md-12 col-xs-12 ">
<div class="single-portfolio web-design">
<img class="img-responsive" src="http://showwp.com/demos/porton/default/upload/p_04.jpg" alt="">
</div>
</div>
<div class="col-sm-12 col-lg-12 col-md-12 col-xs-12 ">
<div class="single-portfolio photography">
<img class="img-responsive" src="http://showwp.com/demos/porton/default/upload/p_05.jpg" alt="">
</div>
</div>
<div class="col-sm-12 col-lg-12 col-md-12 col-xs-12 ">
<div class="single-portfolio web-design">
<img class="img-responsive" src="http://showwp.com/demos/porton/default/upload/p_07.jpg" alt="">
</div>
</div>
<div class="col-sm-12 col-lg-12 col-md-12 col-xs-12 ">
<div class="single-portfolio web-design">
<img class="img-responsive" src="http://showwp.com/demos/porton/default/upload/p_08.jpg" alt="">
</div>
</div>
<div class="col-sm-12 col-lg-12 col-md-12 col-xs-12 ">
<div class="single-portfolio photography">
<img class="img-responsive" src="http://showwp.com/demos/porton/default/upload/p_08.jpg" alt="">
</div>
</div>
<div class="col-sm-12 col-lg-12 col-md-12 col-xs-12 ">
<div class="single-portfolio web-design">
<img class="img-responsive" src="http://showwp.com/demos/porton/default/upload/p_08.jpg" alt="">
</div>
</div>
<div class="col-sm-12 col-lg-12 col-md-12 col-xs-12 ">
<div class="single-portfolio web-design">
<img class="img-responsive" src="http://showwp.com/demos/porton/default/upload/p_09.jpg" alt="">
</div>
</div>
<div class="col-sm-12 col-lg-12 col-md-12 col-xs-12 ">
<div class="single-portfolio photography">
<img class="img-responsive" src="http://showwp.com/demos/porton/default/upload/p_08.jpg" alt="">
</div>
</div>
</div>
</div>
<div class="post_btn">
<div class="hover_effect_btn" id="hover_effect_btn">
<a href="#hover_effect_btn" data-hover="view more post"><span>view more post</span></a>
</div>
</div>
</div>
</div>
</section>
<!-- End Portfolio Section -->
<!-- start our team Section -->
<section id="tm_sec">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs12 ">
<div class="title_sec">
<h1>Our Team</h1>
<h2>WE’RE BRANDING & DIGITAL STUDIO FROM VIET NAM</h2>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs12">
<div class="all_team">
<div class="sngl_team">
<img src="http://wedesignthemes.com/themes/dt-mountcool/wp-content/uploads/2015/10/img-1.png" alt=""/>
<h3> Jamie Catllahan <span>Designer</span></h3>
<p>Lorem ipsum dolor sit amet, consecttur adipisicing elit. Laudant</p>
</div>
<div class="sngl_team">
<img src="http://wedesignthemes.com/themes/dt-mountcool/wp-content/uploads/2015/10/img-2.png" alt=""/>
<h3>Lisa Kudrow <span> Manager </span></h3>
<p>Lorem ipsum dolor sit amet, consecttur adipisicing elit. Laudant</p>
</div>
<div class="sngl_team">
<img src="http://wedesignthemes.com/themes/dt-mountcool/wp-content/uploads/2015/10/img-3.png" alt=""/>
<h3> John Clarance <span> Senior Manager </span></h3>
<p>Lorem ipsum dolor sit amet, consecttur adipisicing elit. Laudant</p>
</div>
<div class="sngl_team">
<img src="http://wedesignthemes.com/themes/dt-mountcool/wp-content/uploads/2015/10/img-4.png" alt=""/>
<h3>Sheena Maya<span> Developer </span></h3>
<p>Lorem ipsum dolor sit amet, consecttur adipisicing elit. Laudant</p>
</div>
<div class="sngl_team">
<img src="http://wedesignthemes.com/themes/dt-mountcool/wp-content/uploads/2015/10/img-1.png" alt=""/>
<h3> Jamie Catllahan <span>Designer</span></h3>
<p>Lorem ipsum dolor sit amet, consecttur adipisicing elit. Laudant</p>
</div>
<div class="sngl_team">
<img src="http://wedesignthemes.com/themes/dt-mountcool/wp-content/uploads/2015/10/img-2.png" alt=""/>
<h3>Lisa Kudrow <span> Manager </span></h3>
<p>Lorem ipsum dolor sit amet, consecttur adipisicing elit. Laudant</p>
</div>
<div class="sngl_team">
<img src="http://wedesignthemes.com/themes/dt-mountcool/wp-content/uploads/2015/10/img-3.png" alt=""/>
<h3> John Clarance <span> Senior Manager </span></h3>
<p>Lorem ipsum dolor sit amet, consecttur adipisicing elit. Laudant</p>
</div>
<div class="sngl_team">
<img src="http://wedesignthemes.com/themes/dt-mountcool/wp-content/uploads/2015/10/img-4.png" alt=""/>
<h3>Sheena Maya<span> Developer </span></h3>
<p>Lorem ipsum dolor sit amet, consecttur adipisicing elit. Laudant</p>
</div>
<div class="sngl_team">
<img src="http://wedesignthemes.com/themes/dt-mountcool/wp-content/uploads/2015/10/img-1.png" alt=""/>
<h3> Jamie Catllahan <span>Designer</span></h3>
<p>Lorem ipsum dolor sit amet, consecttur adipisicing elit. Laudant</p>
</div>
<div class="sngl_team">
<img src="http://wedesignthemes.com/themes/dt-mountcool/wp-content/uploads/2015/10/img-2.png" alt=""/>
<h3>Lisa Kudrow <span> Manager </span></h3>
<p>Lorem ipsum dolor sit amet, consecttur adipisicing elit. Laudant</p>
</div>
<div class="sngl_team">
<img src="http://wedesignthemes.com/themes/dt-mountcool/wp-content/uploads/2015/10/img-3.png" alt=""/>
<h3> John Clarance <span> Senior Manager </span></h3>
<p>Lorem ipsum dolor sit amet, consecttur adipisicing elit. Laudant</p>
</div>
<div class="sngl_team">
<img src="http://wedesignthemes.com/themes/dt-mountcool/wp-content/uploads/2015/10/img-4.png" alt=""/>
<h3>Sheena Maya<span> Developer </span></h3>
<p>Lorem ipsum dolor sit amet, consecttur adipisicing elit. Laudant</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End our team Section -->
<!-- start our teastimonial Section -->
<section id="tstm_sec">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="all_tstm">
<div class="clnt_tstm">
<div class="sngl_tstm">
<i class="fa fa-quote-right"></i>
<h3>what people say?</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur sequi accusamus voluptatum rem itaque alias deleniti nostrum aperiam fugiat voluptates debitis praesentium incidunt accusantium distinctio,</p>
<h6>- jhon deo</h6>
</div>
</div>
<div class="clnt_tstm">
<div class="sngl_tstm">
<i class="fa fa-quote-right"></i>
<h3>Clien Design</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur sequi accusamus voluptatum rem itaque alias deleniti nostrum aperiam fugiat voluptates debitis praesentium incidunt accusantium distinctio,</p>
<h6>- shura deo</h6>
</div>
</div>
<div class="clnt_tstm">
<div class="sngl_tstm">
<i class="fa fa-quote-right"></i>
<h3>Awesome Support SIMA</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur sequi accusamus voluptatum rem itaque alias deleniti nostrum aperiam fugiat voluptates debitis praesentium incidunt accusantium distinctio,</p>
<h6>- kumara deo</h6>
</div>
</div>
<div class="clnt_tstm">
<div class="sngl_tstm">
<i class="fa fa-quote-right"></i>
<h3>Theme Feature great</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur sequi accusamus voluptatum rem itaque alias deleniti nostrum aperiam fugiat voluptates debitis praesentium incidunt accusantium distinctio,</p>
<h6>- dhera deo</h6>
</div>
</div>
<div class="clnt_tstm">
<div class="sngl_tstm">
<i class="fa fa-quote-right"></i>
<h3>Non conflict</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur sequi accusamus voluptatum rem itaque alias deleniti nostrum aperiam fugiat voluptates debitis praesentium incidunt accusantium distinctio,</p>
<h6>- jhon deo</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End our teastimonial Section -->
<!-- start Latest post Section -->
<section id="lts_sec">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs12 ">
<div class="title_sec">
<h1>Our Latest Blog</h1>
<h2>WE’RE BRANDING & DIGITAL STUDIO FROM VIET NAM</h2>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="lts_pst">
<img src="http://cdn.shopify.com/s/files/1/1039/5466/files/blog-img2.jpg?10828543012475550494" alt=""/>
<h2>How to fix your bug</h2>
<p>Nullam metus arcu, pharetra eu tempor vel, consectetur nec metus. Praesent malesuada, purus et euismod rutrum, augue nisi facilisis diam, vitae auctor nisl libero nec eros. Vivamus vitae pulvinar augue. Nulla facilisi. Quisque rutrum ante interdum</p>
<a href="single.html">Read more <i class="fa fa-long-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="lts_pst">
<img src="http://cdn.shopify.com/s/files/1/1039/5466/files/blog-img3.jpg?16122351990094232768" alt=""/>
<h2>Pellentesque nibh libero</h2>
<p>Nullam metus arcu, pharetra eu tempor vel, consectetur nec metus. Praesent malesuada, purus et euismod rutrum, augue nisi facilisis diam, vitae auctor nisl libero nec eros. Vivamus vitae pulvinar augue. Nulla facilisi. Quisque rutrum ante interdum</p>
<a href="">Read more <i class="fa fa-long-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="lts_pst">
<img src="http://cdn.shopify.com/s/files/1/1039/5466/files/blog-img1.jpg?1960436319992241823" alt=""/>
<h2>pharetra eu tempor vel</h2>
<p>Nullam metus arcu, pharetra eu tempor vel, consectetur nec metus. Praesent malesuada, purus et euismod rutrum, augue nisi facilisis diam, vitae auctor nisl libero nec eros. Vivamus vitae pulvinar augue. Nulla facilisi. Quisque rutrum ante interdum</p>
<a href="">Read more <i class="fa fa-long-arrow-right"></i></a>
</div>
</div>
<div class="post_btn">
<div class="hover_effect_btn" id="hover_effect_btn">
<a href="#hover_effect_btn" data-hover="view more post"><span>view more post</span></a>
</div>
</div>
</div>
</div>
</section>
<!-- End Latest post Section -->
<!-- start pricing Section -->
<section id="pricing_sec">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs12 ">
<div class="title_sec">
<h1>Our Pricing Plan</h1>
<h2>WE’RE BRANDING & DIGITAL STUDIO FROM VIET NAM</h2>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="sngl_pricing">
<h2 class="title_bg_1">Basic</h2>
<h3><span class="currency">$</span>30<span class="monuth">/ mo</span></h3>
<ul>
<li>30 GB of Storage</li>
<li>30 GB of Storage</li>
<li>30 GB of Storage</li>
<li>30 GB of Storage</li>
<li><a href="" class="btn pricing_btn">Send</a></li>
</ul>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="sngl_pricing">
<h2 class="title_bg_2">Standerd</h2>
<h3><span class="currency">$</span>50<span class="monuth">/ mo</span></h3>
<ul>
<li>30 GB of Storage</li>
<li>30 GB of Storage</li>
<li>30 GB of Storage</li>
<li>30 GB of Storage</li>
<li><a href="" class="btn pricing_btn">Send</a></li>
</ul>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="sngl_pricing">
<h2 class="title_bg_3">Extended</h2>
<h3><span class="currency">$</span>90<span class="monuth">/ mo</span></h3>
<ul>
<li>30 GB of Storage</li>
<li>30 GB of Storage</li>
<li>30 GB of Storage</li>
<li>30 GB of Storage</li>
<li><a href="" class="btn pricing_btn">Send</a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- End pricing Section -->
<!-- start Happy Client Section -->
<section id="clt_sec">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs12 ">
<div class="title_sec">
<h1>Our Happy Clients</h1>
<h2>WE’RE BRANDING & DIGITAL STUDIO FROM VIET NAM</h2>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs12">
<div class="al_clt">
<div class="sngl_clt">
<a href=""><img src="http://showwp.com/demos/porton/default/upload/client_03.png" alt=""/></a>
</div>
<div class="sngl_clt">
<a href=""><img src="http://showwp.com/demos/porton/default/upload/client_03.png" alt=""/></a>
</div>
<div class="sngl_clt">
<a href=""><img src="http://showwp.com/demos/porton/default/upload/client_04.png" alt=""/></a>
</div>
<div class="sngl_clt">
<a href=""><img src="http://showwp.com/demos/porton/default/upload/client_05.png" alt=""/></a>
</div>
<div class="sngl_clt">
<a href=""><img src="http://showwp.com/demos/porton/default/upload/client_01.png" alt=""/></a>
</div>
<div class="sngl_clt">
<a href=""><img src="http://showwp.com/demos/porton/default/upload/client_03.png" alt=""/></a>
</div>
<div class="sngl_clt">
<a href=""><img src="http://showwp.com/demos/porton/default/upload/client_04.png" alt=""/></a>
</div>
<div class="sngl_clt">
<a href=""><img src="http://showwp.com/demos/porton/default/upload/client_05.png" alt=""/></a>
</div>
<div class="sngl_clt">
<a href=""><img src="http://showwp.com/demos/porton/default/upload/client_01.png" alt=""/></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Happy Client Section -->
<!-- start contact us Section -->
<section id="ctn_sec">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs12 ">
<div class="title_sec">
<h1>Contact Info</h1>
<h2>WE’RE BRANDING & DIGITAL STUDIO FROM VIET NAM</h2>
</div>
</div>
<div class="col-sm-6">
<div id="cnt_form">
<form id="contact-form" class="contact" name="contact-form" method="post" action="send-mail.php">
<div class="form-group">
<input type="text" name="name" class="form-control name-field" required="required" placeholder="Your Name">
</div>
<div class="form-group">
<input type="email" name="email" class="form-control mail-field" required="required" placeholder="Your Email">
</div>
<div class="form-group">
<textarea name="message" id="message" required="required" class="form-control" rows="8" placeholder="Message"></textarea>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">Send</button>
</div>
</form>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="cnt_info">
<ul>
<li><i class="fa fa-facebook"></i><p>121 King Street, Melbourne Victoria 3000 Australia</p></li>
<li><i class="fa fa-envelope"></i><p>contact@info.com</p></li>
<li><i class="fa fa-phone"></i><p>+0987654321 (+012345678)</p></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- End contact us Section -->
<!-- start located map Section -->
<section id="ltd_map_sec">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="map">
<h1>located THE MAP</h1><a href="#slidingDiv" class="show_hide" rel="#slidingDiv"><i class="fa fa-angle-up"></i></a>
<div id="slidingDiv">
<div class="map_area">
<div id="googleMap" style="width:100%;height:300px;"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End located map Section -->
<!-- start footer Section -->
<footer id="ft_sec">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ft">
<ul>
<li><a href=""><i class="fa fa-facebook"></i></a></li>
<li><a href=""><i class="fa fa-twitter"></i></a></li>
<li><a href=""><i class="fa fa-dribbble"></i></a></li>
<li><a href=""><i class="fa fa-rss"></i></a></li>
<li><a href=""><i class="fa fa-flickr"></i></a></li>
<li><a href=""><i class="fa fa-pinterest"></i></a></li>
<li><a href=""><i class="fa fa-linkedin"></i></a></li>
<li><a href=""><i class="fa fa-skype"></i></a></li>
<li><a href=""><i class="fa fa-google"></i></a></li>
</ul>
</div>
<ul class="copy_right">
<li>©Sima 2015</li>
<li>developer by md. shiddikur rahman</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- End footer Section -->
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="js/vendor/jquery-1.11.2.min.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/appear.js"></script>
<script src="js/jquery.counterup.min.js"></script>
<script src="js/waypoints.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/showHide.js"></script>
<script src="js/jquery.nicescroll.min.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/scrolling-nav.js"></script>
<script src="js/plugins.js"></script>
<!-- Google Map js -->
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script>
function initialize() {
var mapOptions = {
zoom: 14,
scrollwheel: false,
center: new google.maps.LatLng(41.092586000000000000, -75.592688599999970000)
};
var map = new google.maps.Map(document.getElementById('googleMap'),
mapOptions);
var marker = new google.maps.Marker({
position: map.getCenter(),
animation:google.maps.Animation.BOUNCE,
icon: 'img/map-marker.png',
map: map
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<script src="js/main.js"></script>
<script src="showHide.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.show_hide').showHide({
speed: 1000, // speed you want the toggle to happen
easing: '', // the animation effect you want. Remove this line if you dont want an effect and if you haven't included jQuery UI
changeText: 1, // if you dont want the button text to change, set this to 0
showText: 'View',// the button text to show when a div is closed
hideText: 'Close' // the button text to show when a div is open
});
});
</script>
<script>
jQuery(document).ready(function( $ ) {
$('.counter').counterUp({
delay: 10,
time: 1000
});
});
</script>
<script>
//Hide Overflow of Body on DOM Ready //
$(document).ready(function(){
$("body").css("overflow", "hidden");
});
// Show Overflow of Body when Everything has Loaded
$(window).load(function(){
$("body").css("overflow", "visible");
var nice=$('html').niceScroll({
cursorborder:"5",
cursorcolor:"#00AFF0",
cursorwidth:"3px",
boxzoom:true,
autohidemode:true
});
});
</script>
</body>
</html>