-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
861 lines (834 loc) · 38.7 KB
/
index.html
File metadata and controls
861 lines (834 loc) · 38.7 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
<!DOCTYPE html>
<html>
<head>
<title>Renessa</title>
<!-- meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/owl.transitions.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/custom.css">
<!-- js -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<script src="js/script.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/jquery.actual.min.js"></script>
</head>
<body>
<div id="wrapper">
<div id="overlay-1">
<section id= "navigation">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="ion-navicon"></span>
</button>
<a class="navbar-brand" href="#">Renessa</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">About Us</a></li>
<li><a href="#our_service">Service</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#price_table">Price Table</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#testimonial">Testimonials</a></li>
<li><a href="#contact">Contact us</a></li>
</ul>
</div> <!-- collapse navbar-collapse -->
</div> <!-- container-fluid -->
</nav> <!-- navbar -->
</section> <!-- #navigation -->
<section id="starting">
<div class="text-center starting-text">
<h1 class="rene">RENESSA</h1>
<h2>Welcome to our world</h2>
</div>
</section>
<div id="bottom" class="bottom text-center">
<a href="#about"><i class="ion-ios7-arrow-down"></i></a>
</div>
</div><!-- overlay-1 -->
</div> <!-- wrapper -->
<!-- About Us -->
<section id="about">
<div class="container">
<div class="row text-center" id="heading">
<div class="col-md-6 col-md-offset-3 wow animated zoomInDown" id="heading-text">
<h3>About Us</h3>
<p>We are here, Nothing to fear</p>
<hr class="full">
<br/>
</div>
</div> <!-- row -->
<div class="row about-us-text">
<div class="col-md-8 col-md-offset-2">
<p class="text-center">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum 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. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
</div> <!-- row -->
<div class="row main_content">
<div class="col-md-4 wow animated zoomIn" data-wow-delay="0.1s">
<figure>
<img class="pro img-responsive center-block" src="img/3-col-icons-web.png">
</figure>
<h5 class="text-center">Web Development</h5>
<div class="row">
<div class="col-xs-12 text-center" style="border-right: 1px solid #f4f4f4">
<div style="display: inline; width: 60px; height: 60px;">
<input type="text" class="knob" data-readonly="true" value="90" data-width="60" data-height="60" data-fgcolor="#39CCCC" readonly="readonly" style="width: 34px; height: 20px; position: absolute; vertical-align: middle; margin-top: 20px; margin-left: -47px; border: 0px; font-weight: bold; font-style: normal; font-variant: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Arial; text-align: center; /* color: rgb(57, 204, 204); */ padding: 0px; -webkit-appearance: none; background: none;">
</div>
</div> <!-- col-xs-12 -->
</div> <!-- row -->
</div> <!-- col-md-4 -->
<div class="col-md-4 wow animated zoomIn" data-wow-delay="0.1s">
<figure>
<img class="pro img-responsive center-block" src="img/3-col-icons-android.png">
</figure>
<h5 class="text-center">Android Development</h5>
<div class="row">
<div class="col-xs-12 text-center" style="border-right: 1px solid #f4f4f4">
<div style="display: inline; width: 60px; height: 60px;">
<input type="text" class="knob" data-readonly="true" value="80" data-width="60" data-height="60" data-fgcolor="#39CCCC" readonly="readonly" style="width: 34px; height: 20px; position: absolute; vertical-align: middle; margin-top: 20px; margin-left: -47px; border: 0px; font-weight: bold; font-style: normal; font-variant: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Arial; text-align: center; /* color: rgb(57, 204, 204); */ padding: 0px; -webkit-appearance: none; background: none;">
</div>
</div> <!-- col-xs-12 -->
</div> <!-- row -->
</div> <!-- col-md-4 -->
<div class="col-md-4 wow animated zoomIn" data-wow-delay="0.1s">
<figure>
<img class="pro img-responsive center-block" src="img/3-col-icons-iphone.png">
</figure>
<h5 class="text-center">iOS Development</h5>
<div class="row">
<div class="col-xs-12 text-center" style="border-right: 1px solid #f4f4f4">
<div style="display: inline; width: 60px; height: 60px;">
<input type="text" class="knob" data-readonly="true" value="75" data-width="60" data-height="60" data-fgcolor="#39CCCC" readonly="readonly" style="width: 34px; height: 20px; position: absolute; vertical-align: middle; margin-top: 20px; margin-left: -47px; border: 0px; font-weight: bold; font-style: normal; font-variant: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Arial; text-align: center; /* color: rgb(57, 204, 204); */ padding: 0px; -webkit-appearance: none; background: none;">
</div>
</div> <!-- col-xs-12 -->
</div> <!-- row -->
</div> <!-- col-md-4 -->
</div><!-- row main_content -->
</div> <!-- container -->
</section> <!-- about us -->
<!-- Our service -->
<section id="our_service">
<div class="container">
<div class="row text-center" id= "heading">
<div class="col-md-6 col-md-offset-3 wow animated zoomInDown" id= "heading-text">
<h3>Our Services</h3>
<p>We are lucky to service people like you</p>
<hr class= "full">
<br/>
</div>
</div>
<div class="main_content">
<div class="services">
<div class="row">
<div class="col-sm-4 service">
<div class="service-icon text-center">
<i class="fa fa-code fa-5x"></i>
</div>
<div class="about-service">
<h3 class="text-center">Web Application</h3>
<p class="text-center">
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
</p>
</div>
</div> <!-- col-sm-4 -->
<div class="col-sm-4 service">
<div class="service-icon text-center">
<i class="fa fa-desktop fa-5x"></i>
</div>
<div class="about-service">
<h3 class="text-center">Web designing</h3>
<p class="text-center">
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
</p>
</div>
</div> <!-- col-sm-4 -->
<div class="col-sm-4 service">
<div class="service-icon text-center">
<i class="fa fa-th fa-5x"></i>
</div>
<div class="about-service">
<h3 class="text-center">Graphics Designing</h3>
<p class="text-center">
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
</p>
</div>
</div> <!-- col-sm-4 -->
</div> <!-- row -->
<div class="row">
<div class="col-sm-4 service">
<div class="service-icon text-center">
<i class="fa fa-gamepad fa-5x"></i>
</div>
<div class="about-service">
<h3 class="text-center">Game Development</h3>
<p class="text-center">
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
</p>
</div>
</div> <!-- col-sm-4 -->
<div class="col-sm-4 service">
<div class="service-icon text-center">
<i class="fa fa-lightbulb-o fa-5x"></i>
</div>
<div class="about-service">
<h3 class="text-center">Creative Ideas</h3>
<p class="text-center">
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
</p>
</div>
</div> <!-- col-sm-4 -->
<div class="col-sm-4 service">
<div class="service-icon text-center">
<i class="fa fa-stack-overflow fa-5x"></i>
</div>
<div class="about-service">
<h3 class="text-center">Support</h3>
<p class="text-center">
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
</p>
</div>
</div> <!-- col-sm-4 -->
</div> <!-- row -->
</div> <!-- services -->
</div> <!-- main_content -->
</div> <!-- container -->
</section> <!-- our_service -->
<!-- Our Team -->
<section id="team">
<div class="container">
<div class="team-members">
<div class="row text-center" id="heading">
<div class="col-md-6 col-md-offset-3 wow animated zoomInDown" id="heading-text">
<h3>Our Team</h3>
<p>We can satisfy your demand</p>
<hr class="full">
<br/>
</div>
</div>
<div class="row main_content">
<div class="col-md-4 col-sm-6 text-center">
<div class="row wow animated zoomIn" data-wow-delay="0.1s">
<div class="col-md-8 col-md-offset-2">
<img class="img-circle img-responsive center-block" src="img/Syed-Rezwanul-Haque.jpg" alt="Syed Rezwanul Haque Rubel">
</div>
</div>
<h4 class="wow animated fadeInUp" data-wow-delay= "0.2s">Syed Rezwanul Haque Rubel</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.3s">Project Manager</p>
<p class= "team-member-description wow animated fadeIn" data-wow-delay= "0.4s">Donec sed odio dui. Etiam porta sem malesuada magna mollis euismod. Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Praesent commodo cursus magna hifd.</p>
<div class= "row text-center wow animated fadeInDown" data-wow-delay= "0.5s">
<div class= "team-member-contact">
<a href="#" data-toggle="tooltip" title="Contact with Facebook" class= "team-facebook">
<i class="fa fa-facebook"></i>
</a>
<a href="#" data-toggle="tooltip" title="Contact with Twitter" class= "team-twitter">
<i class="fa fa-twitter"></i>
</a>
<a href="#" data-toggle="tooltip" title="Contact with Google-plus"class= "team-google-plus">
<i class="fa fa-google-plus"></i>
</a>
</div>
</div>
</div> <!-- col-md-4 -->
<div class="col-md-4 col-sm-6 text-center">
<div class= "row wow animated zoomIn" data-wow-delay="0.6s">
<div class= "col-md-8 col-md-offset-2">
<img class="img-circle img-responsive center-block" src="img/Shahjahan-Jewel.jpg" alt= "Shahjahan Jewel" >
</div>
</div>
<h4 class= "wow animated fadeInUp" data-wow-delay= "0.7s">Shahjahan Jewel</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "0.8s">Head Of Ideas</p>
<p class= "team-member-description wow animated fadeIn" data-wow-delay= "0.9s">Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh.</p>
<div class= "row text-center wow animated fadeInDown" data-wow-delay= "0.5s">
<div class= "team-member-contact">
<a href="#" data-toggle="tooltip" title="Contact with Facebook" class= "team-facebook">
<i class="fa fa-facebook"></i>
</a>
<a href="#" data-toggle="tooltip" title="Contact with Twitter" class= "team-twitter">
<i class="fa fa-twitter"></i>
</a>
<a href="#" data-toggle="tooltip" title="Contact with Google-plus"class= "team-google-plus">
<i class="fa fa-google-plus"></i>
</a>
</div>
</div>
</div> <!-- col-md-4 -->
<div class="col-md-4 col-sm-6 text-center">
<div class= "row wow animated zoomIn" data-wow-delay="1.1s">
<div class="col-md-8 col-md-offset-2">
<img class="img-circle img-responsive center-block" src="img/nathan.jpg" alt= "Nathan Thomas Paul" >
</div>
</div>
<h4 class="wow animated fadeInUp" data-wow-delay= "1.2s">Nathan Thomas Paul</h4>
<p class= "member-title wow animated fadeIn" data-wow-delay= "1.3s">Client Relations Manager</p>
<p class= "team-member-description wow animated fadeIn" data-wow-delay= "1.4s">Donec sed odio dui. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Vestibulum id ligula porta felis euismod semper. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum.</p>
<div class= "row text-center wow animated fadeInDown" data-wow-delay= "0.5s">
<div class= "team-member-contact">
<a href="#" data-toggle="tooltip" title="Contact with Facebook" class= "team-facebook">
<i class="fa fa-facebook"></i>
</a>
<a href="#" data-toggle="tooltip" title="Contact with Twitter" class= "team-twitter">
<i class="fa fa-twitter"></i>
</a>
<a href="#" data-toggle="tooltip" title="Contact with Google-plus"class= "team-google-plus">
<i class="fa fa-google-plus"></i>
</a>
</div>
</div>
</div> <!-- col-md-4 -->
</div> <!-- row main_content -->
</div> <!-- team-members -->
</div> <!-- container -->
</section> <!-- team -->
<!-- Portfolio -->
<section id="portfolio">
<div class="container">
<div class="row text-center" id="heading">
<div class="col-md-6 col-md-offset-3 wow animated zoomInDown" id="heading-text">
<h3>Our Works</h3>
<p>Take a look, Taste our cook</p>
<hr class= "full">
<br/>
</div>
</div>
<div class="main_content">
<div class="row port">
<div class="col-md-8 col-md-offset-2 text-center button-group" id="filters">
<button type="button" class="btn btn-default is-checked" data-filter="*">All</button>
<button type="button" class="btn btn-default" data-filter=".web">Web Design</button>
<button type="button" class="btn btn-default" data-filter=".game">Game</button>
<button type="button" class="btn btn-default" data-filter=".app">App</button>
</div>
</div> <!-- row -->
<div class="row">
<div class="isotope" id="port-items">
<div class="col-md-4 col-sm-6 col-xs-6 element-item web" data-category="web">
<img class="img-responsive" src="img/web-design-1.jpg" >
</div>
<div class="col-md-4 col-sm-6 col-xs-6 element-item game" data-category="game">
<img class="img-responsive" src="img/game-2.jpg">
</div>
<div class="col-md-4 col-sm-6 col-xs-6 element-item app" data-category="app">
<img class="img-responsive" src="img/app-1.jpg">
</div>
<div class="col-md-4 col-sm-6 col-xs-6 element-item web" data-category="web">
<img class="img-responsive" src="img/web-design-2.jpg">
</div>
<div class="col-md-4 col-sm-6 col-xs-6 element-item game" data-category="game">
<img class="img-responsive" src="img/game-1.jpg">
</div>
<div class="col-md-4 col-sm-6 col-xs-6 element-item app" data-category="app">
<img class="img-responsive" src="img/app-2.jpg">
</div>
<div class="col-md-4 col-sm-6 col-xs-6 element-item web" data-category="web">
<img class="img-responsive" src="img/web-design-3.jpg">
</div>
<div class="col-md-4 col-sm-6 col-xs-6 element-item game" data-category="game">
<img class="img-responsive" src="img/game-3.jpg">
</div>
<div class="col-md-4 col-sm-6 col-xs-6 element-item app" data-category="app">
<img class="img-responsive" src="img/app-3.jpg">
</div>
</div> <!-- isotope -->
</div> <!-- row -->
</div> <!-- main_content -->
</div> <!-- container -->
</section> <!-- portfolio -->
<!-- Price-Table -->
<section id="price_table">
<div class="container">
<div class="row text-center" id="heading">
<div class="col-md-6 col-md-offset-3 wow animated zoomInDown" id="heading-text">
<h3>Price Table</h3>
<p>So flexible, More comfortable</p>
<hr class="full">
<br/>
</div>
</div> <!-- row -->
<div class="row main_content">
<ul class="price-table-chart">
<li>
<a href="#">
<strong>Free</strong>
<span class="price_table-description">1 Website</span>
<span class="price_table-description">1 Year Updates</span>
<span class="price_table-description">No Email Support</span>
<big class="price_table-price">$0</big>
<span class="price_table-button">Buy Now</span>
</a>
</li>
<li>
<a href="#">
<strong>Business</strong>
<span class="price_table-description">Unlimited Websites</span>
<span class="price_table-description">1 Year Updates</span>
<span class="price_table-description">1 Year Email Support</span>
<big class="price_table-price">$90</big>
<span class="price_table-button">Buy Now</span>
</a>
</li>
<li>
<a href="#">
<strong>Premium</strong>
<span class="price_table-description">Unlimited Websites</span>
<span class="price_table-description">Lifetime Updates</span>
<span class="price_table-description">Lifetime Email Support</span>
<big class="price_table-price">$190</big>
<span class="price_table-button">Buy Now</span>
</a>
</li>
</ul>
</div> <!-- row main_content -->
</div> <!-- container -->
</section> <!-- price_table -->
<!-- Blog -->
<section id="blog">
<div class="container">
<div class="row text-center" id="heading">
<div class= "bg-image">
<div class= "col-md-6 col-md-offset-3 wow animated zoomInDown" id= "heading-text">
<h3>Our Blog</h3>
<p>Sharing knowledge, Accepting challenge.</p>
<hr class= "full">
<br/>
</div>
</div>
</div>
<div class= "row post">
<div class= "main_content">
<div class= "post-thumbnail col-md-5">
<div class= "frame">
<div class="post-format">
<span class="icon-picture">
<i class= "fa fa-laptop"></i>
</span>
</div>
<a href="#"><img class= "img-responsive" src="img/design1.png" alt=""/></a>
</div>
<img class="hidden-xs post-shadow" src="img/post-shadow.png" alt=""/>
</div>
<div class= "post-excerpt col-md-7">
<h2 class="title"><a href="#">FLAT & MODERN TREND DESIGN</a></h2>
<div class="line-dotted"></div>
<p>
Diur apelligh to luriem rorde ist thuir quire contears foresa irmde narelair muiers lirguen luirem joires porfelas wateir ogespear pesae. Irmde gues narelair muiers lirguen luirem joires porf wateir ogeepear pesae. Diur tol apelligh to luriem rorde ist thuir quire contears foresa irmde narelair muiers lirguen luirem joires porfelas quie wateir ogespear pesae. Irmde gues narelair muiers lirguen luirem joires porf wateir ogeepear pesae.
<a href="#">...Read more</a>
</p>
<div class="line-dotted"></div>
<p class="meta">
<strong>Date:</strong> 14/February/2013 <strong>By:</strong> Zyanya Peredo <strong>In: </strong><a href="#">Photography</a>, <a href="#">Print</a>, <a href="#">Design</a>
</p>
<div class="line-dotted"></div>
<div class= "post-share">
<p>Share this post:</p>
<ul>
<li>
<a href="#" data-toggle="tooltip" title="Contact with Facebook" class= "team-facebook">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Contact with Twitter" class= "team-twitter">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Contact with Google-plus" class= "team-google-plus">
<i class="fa fa-google-plus"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row post">
<div class="main_content">
<div class="post-thumbnail col-md-5">
<div class="frame">
<div class="post-format image">
<span class="icon-facetime-video">
<i class="fa fa-video-camera"></i>
</span>
</div>
<div class="vimeo-video" rel="" data-width="500" data-height="400">
<iframe width="420" height="315" src="//www.youtube.com/embed/DN__D5ixme0" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<img class="hidden-xs post-shadow" src="img/post-shadow.png" alt=""/>
</div>
<div class="post-excerpt col-md-7">
<h2 class="title">
<a href="#">Make up forever - tres vichy</a>
</h2>
<div class="line-dotted">
</div>
<p>
Diur apelligh to luriem rorde ist thuir quire contears foresa irmde narelair muiers lirguen luirem joires porfelas wateir ogespear pesae. Irmde gues narelair muiers lirguen luirem joires porf wateir ogeepear pesae. Diur tol apelligh to luriem rorde ist thuir quire contears foresa irmde narelair muiers lirguen luirem joires porfelas quie wateir ogespear pesae. Irmde gues narelair muiers lirguen luirem joires porf wateir ogeepear pesae.
<a href="#">...Read more</a>
</p>
<div class="line-dotted"></div>
<p class="meta"><strong>Date: </strong>14/February/2013 <strong>By: </strong>Zyanya Peredo <strong>In: </strong><a href="#">Photography</a>, <a href="#">Print</a>, <a href="#">Design</a>
</p>
<div class="line-dotted"></div>
<div class= "post-share">
<p>Share this post:</p>
<ul>
<li>
<a href="#" data-toggle="tooltip" title="Contact with Facebook" class= "team-facebook">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Contact with Twitter" class= "team-twitter">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Contact with Google-plus" class= "team-google-plus">
<i class="fa fa-google-plus"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row post">
<div class="main_content">
<div class="post-thumbnail col-md-5">
<div class="frame">
<div class="post-format quote">
<span class="icon-camera-retro">
<i class= "fa fa-star"></i>
</span>
</div>
<a href="#"><img class= "img-responsive" src="img/blog3.png" alt=""/></a>
</div>
<img class="hidden-xs post-shadow" src="img/post-shadow.png" alt=""/>
</div>
<div class="post-excerpt col-md-7">
<h2 class="title">
<a href="#">Make up forever - Make your web page beautiful.</a>
</h2>
<div class="line-dotted"></div>
<p>
Diur apelligh to luriem rorde ist thuir quire contears foresa irmde narelair muiers lirguen luirem joires porfelas wateir ogespear pesae. Irmde gues narelair muiers lirguen luirem joires porf wateir ogeepear pesae.
<a href="#">...Read more</a>
</p>
<div class="line-dotted"></div>
<p class="meta"><strong>Date: </strong>14/February/2013 <strong>By: </strong>Zyanya Peredo<strong>In: </strong><a href="#">Photography</a>, <a href="#">Print</a>, <a href="#">Design</a>
</p>
<div class="line-dotted"></div>
<div class= "post-share">
<p>Share this post:</p>
<ul>
<li>
<a href="#" data-toggle="tooltip" title="Contact with Facebook" class= "team-facebook">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Contact with Twitter" class= "team-twitter">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Contact with Google-plus" class= "team-google-plus">
<i class="fa fa-google-plus"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row post">
<div class="main_content">
<div class="post-thumbnail col-md-5">
<div class="frame">
<div class="post-format gallery">
<span class="icon-quote-left">
<i class= "fa fa-bookmark"></i>
</span>
</div>
<a href="#"><img class= "img-responsive" src="img/global_focus.jpg" alt=""/></a>
</div>
<img class="hidden-xs post-shadow" src="img/post-shadow.png" alt=""/>
</div>
<div class="post-excerpt col-md-7">
<h2 class="title">
<a href="#">The most beautiful quotes ever</a>
</h2>
<div class="line-dotted"></div>
<p>
Diur apelligh to luriem rorde ist thuir quire contears foresa irmde narelair muiers lirguen luirem joires porfelas wateir ogespear pesae. Irmde gues narelair muiers lirguen luirem joires porf wateir ogeepear pesae. Diur tol apelligh to luriem rorde ist thuir quire contears foresa irmde narelair muiers lirguen luirem joires porfelas quie wateir ogespear pesae. Irmde gues narelair muiers lirguen luirem joires porf wateir ogeepear pesae.
<a href="#">...Read more</a>
</p>
<div class="line-dotted"></div>
<p class="meta"><strong>Date:</strong> 14/February/2013 <strong>By:</strong> Zyanya Peredo <strong>In:</strong> <a href="#">Photography</a>, <a href="#">Print</a>, <a href="#">Design</a>
</p>
<div class="line-dotted"></div>
<div class= "post-share">
<p>Share this post:</p>
<ul>
<li>
<a href="#" data-toggle="tooltip" title="Contact with Facebook" class= "team-facebook">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Contact with Twitter" class= "team-twitter">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Contact with Google-plus" class= "team-google-plus">
<i class="fa fa-google-plus"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class= "row">
<div class= "col-md-6 col-md-offset-3 text-center">
<ul class="pagination">
<li class="disabled"><a href="#">>></a></li>
<li class="active"><a href="#">1 <span class="sr-only">(current)</span></a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li><a href="#">>></a></li>
</ul>
</div>
</div>
</div> <!-- container -->
</section> <!-- blog -->
<!-- Clients -->
<section id= "testimonial">
<div class= "container">
<div class= "row text-center" id= "heading">
<div class= "bg-image col-md-12">
<div class= "col-md-6 col-md-offset-3 wow animated zoomInDown" id= "heading-text">
<h3>Testimonials</h3>
<p>Their satisfication, Our inspiration.</p>
<hr class= "full">
<br/>
</div>
</div>
</div>
<div class= "row main_content">
<div class= "col-md-6 col-md-offset-3">
<div id="client-speech" class="owl-carousel owl-theme">
<div class="item">
<div class= "row">
<div class= "col-md-6 col-md-offset-3">
<img class= "img-circle img-responsive center-block" src="img/client1.png">
</div>
<div class= "col-md-12">
<p class= "client-comment text-center">
When you form a team, why do you try to form a team? Because teamwork builds trust and trust builds speed.
</p>
</div>
</div>
<div class= "row text-center">
<p class= "client-name text-center"> ----- Noona Nuengthida Sophon</p>
</div>
</div>
<div class="item">
<div class= "row">
<div class= "col-md-6 col-md-offset-3">
<img class= "img-circle img-responsive center-block" src="img/client2.jpg">
</div>
<div class= "col-md-12">
<p class= "client-comment text-center">
I am constantly being asked about individuals. The only way to win is as a team. Football is not about one or two or three star players.
</p>
</div>
</div>
<div class= "row text-center">
<p class= "client-name">-----Md. Aminul Islam Bhuiyan</p>
</div>
</div>
<div class="item">
<div class= "row">
<div class= "col-md-6 col-md-offset-3">
<img class= "img-circle img-responsive center-block" src="img/client3.png">
</div>
<div class= "col-md-12">
<p class= "client-comment text-center">
Individual commitment to a group effort- that is what makes a team work, a company work, a society work, a civilisation work.
</p>
</div>
</div>
<div class= "row text-center">
<p class= "client-name">----- Jenifar Pink</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section> <!-- clients -->
<!-- contact -->
<section id= "contact">
<div class= "container">
<div class="row text-center" id= "heading">
<div class= "bg-image">
<div class= "col-lg-6 col-lg-offset-3 share-text wow animated zoomInDown" id= "heading-text">
<h3 class= "text-center">Stay Connected</h3>
<p>We want to connect people like you.</p>
<hr class= "full">
<br/>
</div>
</div>
</div>
<div class= "row text-center main_content">
<div class= "col-md-6 col-md-offset-3 text-center">
<form method="post" action="#">
<div class= "form">
<div class="input-group margin-bottom-sm">
<span class="input-group-addon">
<i class="fa fa-user fa-fw"></i>
</span>
<input class="form-control" type="text" placeholder="Name" required>
</div>
<div class="input-group margin-bottom-sm">
<span class="input-group-addon">
<i class="fa fa-envelope-o fa-fw"></i>
</span>
<input class="form-control" type="text" placeholder="Email address" required>
</div>
<div class="input-group margin-bottom-sm">
<span class="input-group-addon">
<i class="fa fa-tags fa-fw"></i>
</span>
<input class="form-control" type="text" placeholder="Subject">
</div>
</div>
<div class="input-group margin-bottom-sm">
<span class="input-group-addon">
<i class="fa fa-comment-o fa-fw"></i>
</span>
<textarea class="form-control" rows="6" type= "text" placeholder="Your Message" required></textarea>
</div>
<input class="btn btn-primary send" type="submit" value="Send Message">
</form>
</div>
</div>
<div class= "row">
<div class= "col-md-6 col-md-offset-3 text-center">
<ul class="socials-icons">
<li>
<a href="#" data-toggle="tooltip" title="Share in Facebook" class="facebook"><i class="fa fa-facebook"></i></a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Share in Twitter" class="twitter"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Share in Google +" class="google-plus"><i class="fa fa-google-plus"></i></a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Share in Instagram" class="instagram"><i class="fa fa-instagram"></i></a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Share in Pinterest" class="pinterest"><i class="fa fa-pinterest"></i></a>
</li>
<li>
<a href="#" data-toggle="tooltip" title="Connect with Skype" class="skype"><i class="fa fa-skype"></i></a>
</li>
</ul>
</div>
</div>
</div>
</section> <!-- contacts -->
<!-- footer -->
<section id= "footer" class= "main-footer">
<div class= "row">
<div class= "logo text-center">
<h1>Renessa</h1>
</div>
</div>
<div class= "row">
<div class= "copyright text-center">
<p> © 2014 Technext. Designed and Developed by <a href="http://themewagon.com"><span class= "theme">Themewagon</span></a></p>
</div>
</div>
</section><!-- footer -->
<!-- js -->
<script>
$(document).ready(function() {
$("#client-speech").owlCarousel({
autoPlay: 3000,
navigation : false, // Show next and prev buttons
slideSpeed : 700,
paginationSpeed : 1000,
singleItem:true
});
});
</script>
<script>
new WOW().init();
</script>
<script>
$( function() {
// init Isotope
var $container = $('.isotope').isotope
({
itemSelector: '.element-item',
layoutMode: 'fitRows'
});
// bind filter button click
$('#filters').on( 'click', 'button', function()
{
var filterValue = $( this ).attr('data-filter');
// use filterFn if matches value
$container.isotope({ filter: filterValue });
});
// change is-checked class on buttons
$('.button-group').each( function( i, buttonGroup )
{
var $buttonGroup = $( buttonGroup );
$buttonGroup.on( 'click', 'button', function()
{
$buttonGroup.find('.is-checked').removeClass('is-checked');
$( this ).addClass('is-checked');
});
});
});
</script>
<script src="js/jquery-ui-1.10.3.min.js"></script>
<script src="js/jquery.knob.js"></script>
<script src="js/daterangepicker.js"></script>
<script src="js/bootstrap3-wysihtml5.all.min.js"></script>
<script src="js/dashboard.js"></script>
</body>
</html>