-
Notifications
You must be signed in to change notification settings - Fork 161
/
typography.html
1119 lines (1090 loc) · 47.5 KB
/
typography.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<title>
Food Recipe a hotel Category Flat Bootstrap Responsive Website Template |
Typography :: w3layouts
</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Food Recipe a Responsive web template, Bootstrap Web Templates, Flat Web Templates, Android Compatible web template,
Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyEricsson, Motorola web design" />
<script type="application/x-javascript">
addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false);
function hideURLbar(){ window.scrollTo(0,1); }
</script>
<link rel="icon" href="images/restaurant.webp" />
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
//contextual
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" />
<link href="css/translate.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
<script src="js/script.js"></script>
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--
AOS STYLESHEET INIT
-->
<link rel="stylesheet" href="./css/aos.css">
<link href="//fonts.googleapis.com/css?family=Cookie" rel="stylesheet" />
<link
href="//fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&subset=latin-ext,vietnamese"
rel="stylesheet" />
<link
href="//fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese"
rel="stylesheet" />
<!-- SEO ESSENTIALS -->
<meta name="robots" content="index, follow" />
<meta name="language" content="en" />
<meta name="revisit-after" content="7 days" />
<meta name="distribution" content="global" />
<meta name="geo.region" content="india" />
<meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<meta http-equiv="content-language" content="en" />
<meta name="description"
content="Explore a world of irresistible recipes on our site. From sweet treats to savory delights, elevate your cooking game with our easy-to-follow guides. Join us on a flavorful adventure today!" />
<meta name="keywords"
content="Recipes, Food, Cooking, Culinary, Delights, Desserts, Savory, Easy-to-follow, Guides, Kitchen, Sweet treats, Cooking tips, Flavors, Culinary adventure, Food lovers, Gourmet, Ingredients, Tasty, Dishes, Homemade" />
<link rel="canonical" href="https://delightful-beach-00b073d10.1.azurestaticapps.net/" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="theme-color" content="#0000" />
<meta name="msapplication-navbutton-color" content="#0000" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="#0000" />
<meta name="theme-color" content="#0000" />
<!-- Open Graph Essentials -->
<meta property="og:type" content="website" />
<meta name="og:author" content="Anup Kumar jha" />
<meta property="og:url" content="https://delightful-beach-00b073d10.1.azurestaticapps.net/" />
<meta property="og:site_name" content="Food Recipes Website" />
<meta name="og:title" content="Food Recipes Website | Delicious recipes for every palate" />
<meta name="og:description"
content="Explore a world of irresistible recipes on our site. From sweet treats to savory delights, elevate your cooking game with our easy-to-follow guides. Join us on a flavorful adventure today!" />
<meta property="og:image"
content="https://raw.githubusercontent.com/0xabdulkhalid/food-recipes-website/fixes-issue-%23213-by-0xabdulkhalid/images/preview.webp" />
<!-- Twitter Essentials -->
<meta name="twitter:card"
content="https://raw.githubusercontent.com/0xabdulkhalid/food-recipes-website/fixes-issue-%23213-by-0xabdulkhalid/images/preview.webp" />
<meta name="twitter:site" content="@foodrecipes" />
<meta name="twitter:image"
content="https://raw.githubusercontent.com/0xabdulkhalid/food-recipes-website/fixes-issue-%23213-by-0xabdulkhalid/images/preview.webp" />
<meta property="twitter:url" content="https://delightful-beach-00b073d10.1.azurestaticapps.net/" />
<meta property="twitter:title" content="Food Recipes Website | Delicious recipes for every palate" />
<meta property="twitter:description"
content="Indulge in a delectable array of recipes on our site. From delightful desserts to savory masterpieces, enhance your culinary skills with our user-friendly guides. Embark on a tasteful journey with us today!" />
<!-- META END -->
</head>
<body>
<!-- Loader -->
<div id="loader-wrapper">
<div id="loader"></div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
<!-- end Loader -->
<div class="banner-header banner2" data-aos="fade-in">
<div class="banner-dott1">
<!--header-->
<div class="header">
<div class="container-fluid">
<nav class="navbar navbar-default">
<div class="navbar-header navbar-left">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="w3_navigation_pos">
<div class="image-container">
<a href="index.html"><img src="/images/food-logo.webp" class="small-image" alt="food-recipe" /></a>
</div>
</div>
</div>
<div class="collapse navbar-collapse navbar-right" id="bs-example-navbar-collapse-1">
<nav>
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Our Services</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li class="dropdown active">
<a href="#" class="dropdown-toggle" data-hover="Pages" data-toggle="dropdown">Short Codes <b
class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="icons.html">Icons</a></li>
<li class="active">
<a href="typography.html">Typography</a>
</li>
</ul>
</li>
<li><a href="contact.html">Contact</a></li>
<li style="width: max-content;">
<a id="google_translate_element"></a>
<script src="js_files/translate.js"></script>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement(
{pageLanguage: 'en'},
'google_translate_element'
);
}
</script>
<script type="text/javascript" src= "https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit">
</script>
</li>
</ul>
</nav>
</div>
</nav>
</div>
</div>
<!--//header-->
</div>
</div>
<!-- // banner -->
<!-- //bottom button added by preksha mahajan-->
<a href="#" id="scrollDownButton">
<div class="circle-background">
<img src="./images/bottomButton.webp" alt="Scroll Down">
</div>
</a>
<!-- //bottom button added by preksha mahajan-->
<!-- typography -->
<div class="typography">
<div class="container">
<div class="grid_3 grid_4" data-aos="fade-up">
<h3 class="hdg">Headings</h3>
<div class="bs-example">
<table class="table">
<tbody>
<tr>
<td>
<h1 id="h1.-bootstrap-heading">
h1. Bootstrap heading<a class="anchorjs-link" href="#h1.-bootstrap-heading"><span
class="anchorjs-icon"></span></a>
</h1>
</td>
<td class="type-info">Semibold 36px</td>
</tr>
<tr>
<td>
<h2 id="h2.-bootstrap-heading">
h2. Bootstrap heading<a class="anchorjs-link" href="#h2.-bootstrap-heading"><span
class="anchorjs-icon"></span></a>
</h2>
</td>
<td class="type-info">Semibold 30px</td>
</tr>
<tr>
<td>
<h3 id="h3.-bootstrap-heading">
h3. Bootstrap heading<a class="anchorjs-link" href="#h3.-bootstrap-heading"><span
class="anchorjs-icon"></span></a>
</h3>
</td>
<td class="type-info">Semibold 24px</td>
</tr>
<tr>
<td>
<h4 id="h4.-bootstrap-heading">
h4. Bootstrap heading<a class="anchorjs-link" href="#h4.-bootstrap-heading"><span
class="anchorjs-icon"></span></a>
</h4>
</td>
<td class="type-info">Semibold 18px</td>
</tr>
<tr>
<td>
<h5 id="h5.-bootstrap-heading">
h5. Bootstrap heading<a class="anchorjs-link" href="#h5.-bootstrap-heading"><span
class="anchorjs-icon"></span></a>
</h5>
</td>
<td class="type-info">Semibold 14px</td>
</tr>
<tr>
<td>
<h6>h6. Bootstrap heading</h6>
</td>
<td class="type-info">Semibold 12px</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="grid_3 grid_5 wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<h3 class="hdg">Buttons</h3>
<h1>
<a href="#"><span class="label label-default">Default</span></a>
<a href="#"><span class="label label-primary">Primary</span></a>
<a href="#"><span class="label label-success">Success</span></a>
<a href="#"><span class="label label-info">Info</span></a>
<a href="#"><span class="label label-warning">Warning</span></a>
<a href="#"><span class="label label-danger">Danger</span></a>
</h1>
<h2>
<a href="#"><span class="label label-default">Default</span></a>
<a href="#"><span class="label label-primary">Primary</span></a>
<a href="#"><span class="label label-success">Success</span></a>
<a href="#"><span class="label label-info">Info</span></a>
<a href="#"><span class="label label-warning">Warning</span></a>
<a href="#"><span class="label label-danger">Danger</span></a>
</h2>
<h3>
<a href="#"><span class="label label-default">Default</span></a>
<a href="#"><span class="label label-primary">Primary</span></a>
<a href="#"><span class="label label-success">Success</span></a>
<a href="#"><span class="label label-info">Info</span></a>
<a href="#"><span class="label label-warning">Warning</span></a>
<a href="#"><span class="label label-danger">Danger</span></a>
</h3>
<h4>
<a href="#"><span class="label label-default">Default</span></a>
<a href="#"><span class="label label-primary">Primary</span></a>
<a href="#"><span class="label label-success">Success</span></a>
<a href="#"><span class="label label-info">Info</span></a>
<a href="#"><span class="label label-warning">Warning</span></a>
<a href="#"><span class="label label-danger">Danger</span></a>
</h4>
<h5>
<a href="#"><span class="label label-default">Default</span></a>
<a href="#"><span class="label label-primary">Primary</span></a>
<a href="#"><span class="label label-success">Success</span></a>
<a href="#"><span class="label label-info">Info</span></a>
<a href="#"><span class="label label-warning">Warning</span></a>
<a href="#"><span class="label label-danger">Danger</span></a>
</h5>
<h6>
<a href="#"><span class="label label-default">Default</span></a>
<a href="#"><span class="label label-primary">Primary</span></a>
<a href="#"><span class="label label-success">Success</span></a>
<a href="#"><span class="label label-info">Info</span></a>
<a href="#"><span class="label label-warning">Warning</span></a>
<a href="#"><span class="label label-danger">Danger</span></a>
</h6>
</div>
<div class="grid_3 grid_5 wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-left">
<h3 class="hdg">Progress Bars</h3>
<div class="tab-content">
<div class="tab-pane active" id="domprogress">
<div class="progress">
<div class="progress-bar progress-bar-primary" style="width: 20%"></div>
</div>
<p>Info with <code>progress-bar-info</code> class.</p>
<div class="progress">
<div class="progress-bar progress-bar-info" style="width: 60%"></div>
</div>
<p>Success with <code>progress-bar-success</code> class.</p>
<div class="progress">
<div class="progress-bar progress-bar-success" style="width: 30%"></div>
</div>
<p>Warning with <code>progress-bar-warning</code> class.</p>
<div class="progress">
<div class="progress-bar progress-bar-warning" style="width: 70%"></div>
</div>
<p>Danger with <code>progress-bar-danger</code> class.</p>
<div class="progress">
<div class="progress-bar progress-bar-danger" style="width: 50%"></div>
</div>
<p>Inverse with <code>progress-bar-inverse</code> class.</p>
<div class="progress">
<div class="progress-bar progress-bar-inverse" style="width: 40%"></div>
</div>
<p>Inverse with <code>progress-bar-inverse</code> class.</p>
<div class="progress">
<div class="progress-bar progress-bar-success" style="width: 35%">
<span class="sr-only">35% Complete (success)</span>
</div>
<div class="progress-bar progress-bar-warning" style="width: 20%">
<span class="sr-only">20% Complete (warning)</span>
</div>
<div class="progress-bar progress-bar-danger" style="width: 10%">
<span class="sr-only">10% Complete (danger)</span>
</div>
</div>
</div>
</div>
</div>
<div class="grid_3 grid_5 wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<h3 class="hdg">Alerts</h3>
<div class="alert alert-success" role="alert">
<strong>Well done!</strong> You successfully read this important
alert message.
</div>
<div class="alert alert-info" role="alert">
<strong>Heads up!</strong> This alert needs your attention, but it's
not super important.
</div>
<div class="alert alert-warning" role="alert">
<strong>Warning!</strong> Best check yo self, you're not looking too
good.
</div>
<div class="alert alert-danger" role="alert">
<strong>Oh snap!</strong> Change a few things up and try submitting
again.
</div>
</div>
<div class="grid_3 grid_5 wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-left">
<h3 class="hdg">Pagination</h3>
<div class="col-md-6">
<nav>
<ul class="pagination pagination-lg">
<li>
<a href="#" aria-label="Previous"><span aria-hidden="true">«</span></a>
</li>
<li><a href="#">1</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="#" aria-label="Next"><span aria-hidden="true">»</span></a>
</li>
</ul>
</nav>
<nav>
<ul class="pagination">
<li>
<a href="#" aria-label="Previous"><span aria-hidden="true">«</span></a>
</li>
<li><a href="#">1</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="#" aria-label="Next"><span aria-hidden="true">»</span></a>
</li>
</ul>
</nav>
<nav>
<ul class="pagination pagination-sm">
<li>
<a href="#" aria-label="Previous"><span aria-hidden="true">«</span></a>
</li>
<li><a href="#">1</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="#" aria-label="Next"><span aria-hidden="true">»</span></a>
</li>
</ul>
</nav>
</div>
<div class="col-md-6">
<ul class="pagination pagination-lg">
<li class="disabled">
<a href="#"><i class="fa fa-angle-left">«</i></a>
</li>
<li class="active"><a href="#">1</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="#"><i class="fa fa-angle-right">»</i></a>
</li>
</ul>
<nav>
<ul class="pagination">
<li class="disabled">
<a href="#" aria-label="Previous"><span aria-hidden="true">«</span></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="#" aria-label="Next"><span aria-hidden="true">»</span></a>
</li>
</ul>
</nav>
<ul class="pagination pagination-sm">
<li class="disabled">
<a href="#"><i class="fa fa-angle-left">«</i></a>
</li>
<li class="active"><a href="#">1</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="#"><i class="fa fa-angle-right">»</i></a>
</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
<div class="grid_3 grid_5 wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<h3 class="hdg">Breadcrumbs</h3>
<ol class="breadcrumb">
<li class="active">Home</li>
</ol>
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li class="active">Library</li>
</ol>
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li><a href="#">Library</a></li>
<li class="active">Data</li>
</ol>
</div>
<div class="grid_3 grid_5 wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-left">
<h3 class="hdg">Badges</h3>
<div class="col-md-6">
<p>Add modifier classes to change the appearance of a badge.</p>
<table class="table table-bordered">
<thead>
<tr>
<th>Classes</th>
<th>Badges</th>
</tr>
</thead>
<tbody>
<tr>
<td>No modifiers</td>
<td><span class="badge">42</span></td>
</tr>
<tr>
<td><code>.badge-primary</code></td>
<td><span class="badge badge-primary">1</span></td>
</tr>
<tr>
<td><code>.badge-success</code></td>
<td><span class="badge badge-success">22</span></td>
</tr>
<tr>
<td><code>.badge-info</code></td>
<td><span class="badge badge-info">30</span></td>
</tr>
<tr>
<td><code>.badge-warning</code></td>
<td><span class="badge badge-warning">412</span></td>
</tr>
<tr>
<td><code>.badge-danger</code></td>
<td><span class="badge badge-danger">999</span></td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-6">
<p>
Easily highlight new or unread items with the
<code>.badge</code> class
</p>
<div class="list-group list-group-alternate" data-aos="fade-right">
<a href="#" class="list-group-item"><span class="badge">201</span>
<i class="ti ti-email"></i> Inbox
</a>
<a href="#" class="list-group-item"><span class="badge badge-primary">5021</span>
<i class="ti ti-eye"></i> Profile visits
</a>
<a href="#" class="list-group-item"><span class="badge">14</span>
<i class="ti ti-headphone-alt"></i> Call
</a>
<a href="#" class="list-group-item"><span class="badge">20</span>
<i class="ti ti-comments"></i> Messages
</a>
<a href="#" class="list-group-item"><span class="badge badge-warning">14</span>
<i class="ti ti-bookmark"></i> Bookmarks
</a>
<a href="#" class="list-group-item"><span class="badge badge-danger">30</span>
<i class="ti ti-bell"></i> Notifications
</a>
</div>
</div>
<div class="clearfix"></div>
</div>
<div class="grid_3 grid_5 wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-left">
<h3 class="hdg">Wells</h3>
<div class="well">
There are many variations of passages of Lorem Ipsum available, but
the majority have suffered alteration
</div>
<div class="well">
It is a long established fact that a reader will be distracted by
the readable content of a page when looking at its layout. The point
of using Lorem Ipsum is that it has a more-or-less normal
distribution of letters, as opposed to using 'Content here
</div>
<div class="well">
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
</div>
</div>
<div class="grid_3 grid_5 wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<h3 class="hdg">Tabs</h3>
<div class="bs-example bs-example-tabs" role="tabpanel" data-example-id="togglable-tabs">
<ul id="myTab" class="nav nav-tabs" role="tablist">
<li role="presentation" class="active">
<a href="#home" id="home-tab" role="tab" data-toggle="tab" aria-controls="home"
aria-expanded="true">Home</a>
</li>
<li role="presentation">
<a href="#profile" role="tab" id="profile-tab" data-toggle="tab" aria-controls="profile">Profile</a>
</li>
<li role="presentation" class="dropdown">
<a href="#" id="myTabDrop1" class="dropdown-toggle" data-toggle="dropdown"
aria-controls="myTabDrop1-contents">Dropdown <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu" aria-labelledby="myTabDrop1" id="myTabDrop1-contents">
<li>
<a href="#dropdown1" tabindex="-1" role="tab" id="dropdown1-tab" data-toggle="tab"
aria-controls="dropdown1">@fat</a>
</li>
<li>
<a href="#dropdown2" tabindex="-1" role="tab" id="dropdown2-tab" data-toggle="tab"
aria-controls="dropdown2">@mdo</a>
</li>
</ul>
</li>
</ul>
<div id="myTabContent" class="tab-content" data-aos="fade-left">
<div role="tabpanel" class="tab-pane fade in active" id="home" aria-labelledby="home-tab">
<p>
Raw denim you probably haven't heard of them jean shorts
Austin. Nesciunt tofu stumptown aliqua, retro synth master
cleanse. Mustache cliche tempor, williamsburg carles vegan
helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher
synth. Cosby sweater eu banh mi, qui irure terry richardson ex
squid. Aliquip placeat salvia cillum iphone. Seitan aliquip
quis cardigan american apparel, butcher voluptate nisi qui.
</p>
</div>
<div role="tabpanel" class="tab-pane fade" id="profile" aria-labelledby="profile-tab">
<p>
Food truck fixie locavore, accusamus mcsweeney's marfa nulla
single-origin coffee squid. Exercitation +1 labore velit, blog
sartorial PBR leggings next level wes anderson artisan four
loko farm-to-table craft beer twee. Qui photo booth
letterpress, commodo enim craft beer mlkshk aliquip jean
shorts ullamco ad vinyl cillum PBR. Homo nostrud organic,
assumenda labore aesthetic magna delectus mollit. Keytar
helvetica VHS salvia yr, vero magna velit sapiente labore
stumptown. Vegan fanny pack odio cillum wes anderson 8-bit,
sustainable jean shorts beard ut DIY ethical culpa terry
richardson biodiesel. Art party scenester stumptown, tumblr
butcher vero sint qui sapiente accusamus tattooed echo park.
</p>
</div>
<div role="tabpanel" class="tab-pane fade" id="dropdown1" aria-labelledby="dropdown1-tab">
<p>
Etsy mixtape wayfarers, ethical wes anderson tofu before they
sold out mcsweeney's organic lomo retro fanny pack lo-fi
farm-to-table readymade. Messenger bag gentrify pitchfork
tattooed craft beer, iphone skateboard locavore carles etsy
salvia banksy hoodie helvetica. DIY synth PBR banksy irony.
Leggings gentrify squid 8-bit cred pitchfork. Williamsburg
banh mi whatever gluten-free, carles pitchfork biodiesel fixie
etsy retro mlkshk vice blog. Scenester cred you probably
haven't heard of them, vinyl craft beer blog stumptown.
Pitchfork sustainable tofu synth chambray yr.
</p>
</div>
<div role="tabpanel" class="tab-pane fade" id="dropdown2" aria-labelledby="dropdown2-tab">
<p>
Trust fund seitan letterpress, keytar raw denim keffiyeh etsy
art party before they sold out master cleanse gluten-free
squid scenester freegan cosby sweater. Fanny pack portland
seitan DIY, art party locavore wolf cliche high life echo park
Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before
they sold out farm-to-table VHS viral locavore cosby sweater.
Lomo wolf viral, mustache readymade thundercats keffiyeh craft
beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh
echo park vegan.
</p>
</div>
</div>
</div>
</div>
<h3 class="hdg wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
Unordered List
</h3>
<ul class="list-group wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<li class="list-group-item">Cras justo odio</li>
<li class="list-group-item">Dapibus ac facilisis in</li>
<li class="list-group-item">Morbi leo risus</li>
<li class="list-group-item">Porta ac consectetur ac</li>
<li class="list-group-item">Vestibulum at eros</li>
</ul>
<h3 class="hdg wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-left">
Ordered List
</h3>
<ol class="wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-left">
<li class="list-group-item1">Cras justo odio</li>
<li class="list-group-item1">Dapibus ac facilisis in</li>
<li class="list-group-item1">Morbi leo risus</li>
<li class="list-group-item1">Porta ac consectetur ac</li>
<li class="list-group-item1">Vestibulum at eros</li>
</ol>
<h3 class="hdg wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
Contextual Colors and Background
</h3>
<h4 data-aos="fade-right">Use the contextual classes to provide "meaning through colors":</h4>
<br />
<ul class="list-group grid_4 wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<li class="list-group-item2 text-muted">This text is muted.</li>
<li class="list-group-item2 text-primary">This text is important.</li>
<li class="list-group-item2 text-success">This text indicates success.</li>
<li class="list-group-item2 text-info">This text represents some information.</li>
<li class="list-group-item2 text-warning">This text represents a warning.</li>
<li class="list-group-item2 text-danger">This text represents danger.</li>
</ul>
<h4 data-aos="fade-right">Use the contextual background classes to provide "meaning through colors":</h4>
<br />
<ul class="list-group grid_4 wow fadeInUp animated container" data-wow-delay=".5s" data-aos="fade-right">
<li class="list-group-item2 bg-primary">This text is important.</li>
<li class="list-group-item2 bg-success">This text indicates success.</li>
<li class="list-group-item2 bg-info">This text represents some information.</li>
<li class="list-group-item2 bg-warning">This text represents a warning.</li>
<li class="list-group-item2 bg-danger">This text represents danger.</li>
</ul>
<h3 class="hdg wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-left">Forms</h3>
<div class="input-group wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<span class="input-group-addon" id="basic-addon1">@</span>
<input type="text" class="form-control" placeholder="Username" aria-describedby="basic-addon1" />
</div>
<div class="input-group wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<input type="text" class="form-control" placeholder="Recipient's username" aria-describedby="basic-addon2" />
<span class="input-group-addon" id="basic-addon2">@example.com</span>
</div>
<div class="input-group wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<span class="input-group-addon">$</span>
<input type="text" class="form-control" aria-label="Amount (to the nearest dollar)" />
<span class="input-group-addon">.00</span>
</div>
<div class="input-group input-group-lg wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<span class="input-group-addon" id="sizing-addon1">@</span>
<input type="text" class="form-control" placeholder="Username" aria-describedby="sizing-addon1" />
</div>
<div class="input-group wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<span class="input-group-addon" id="sizing-addon2">@</span>
<input type="text" class="form-control" placeholder="Username" aria-describedby="sizing-addon2" />
</div>
<div class="input-group input-group-sm wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<span class="input-group-addon" id="sizing-addon3">@</span>
<input type="text" class="form-control" placeholder="Username" aria-describedby="sizing-addon3" />
</div>
<div class="row wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<div class="col-lg-6 in-gp-tl">
<div class="input-group">
<span class="input-group-addon">
<input type="checkbox" aria-label="..." />
</span>
<input type="text" class="form-control" aria-label="..." />
</div>
<!-- /input-group -->
</div>
<!-- /.col-lg-6 -->
<div class="col-lg-6 in-gp-tb">
<div class="input-group">
<span class="input-group-addon">
<input type="radio" aria-label="..." />
</span>
<input type="text" class="form-control" aria-label="..." />
</div>
<!-- /input-group -->
</div>
<!-- /.col-lg-6 -->
</div>
<!-- /.row -->
<div class="row wow fadeInUp animated" data-wow-delay=".5s">
<div class="col-lg-6 in-gp-tl">
<div class="input-group">
<span class="input-group-btn">
<button class="btn btn-default" type="button">Go!</button>
</span>
<input type="text" class="form-control" placeholder="Search for..." />
</div>
<!-- /input-group -->
</div>
<!-- /.col-lg-6 -->
<div class="col-lg-6 in-gp-tb">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search for..." />
<span class="input-group-btn">
<button class="btn btn-default" type="button">Go!</button>
</span>
</div>
<!-- /input-group -->
</div>
<!-- /.col-lg-6 -->
</div>
<!-- /.row -->
<div class="row wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-left">
<div class="col-lg-6 in-gp-tl">
<div class="input-group">
<div class="input-group-btn">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
Action <span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<!-- /btn-group -->
<input type="text" class="form-control" aria-label="..." />
</div>
<!-- /input-group -->
</div>
<div class="col-lg-6 in-gp-tb">
<div class="input-group">
<input type="text" class="form-control" aria-label="..." />
<div class="input-group-btn">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
Action <span class="caret"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<!-- /btn-group -->
</div>
<!-- /input-group -->
</div>
</div>
<!-- /.row -->
<div class="page-header wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<h3 class="hdg">Tables</h3>
</div>
<h2 class="typoh2 wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
Default styles
</h2>
<p class="wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
For basic stylinglight padding and only horizontal add the base class
<code>.table</code> to any <code><table></code>.
</p>
<div class="bs-docs-example wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<table class="table">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
<hr class="bs-docs-separator" />
<p class="wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
Add any of the following classes to the <code>.table</code> base
class.
</p>
<p class="wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
Adds zebra-striping to any table row within the
<code><tbody></code> via the <code>:nth-child</code> CSS
selector (not available in IE7-8).
</p>
<div class="bs-docs-example wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
<p class="wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
Add borders and rounded corners to the table.
</p>
<div class="bs-docs-example wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<table class="table table-bordered">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>Mark</td>
<td>Otto</td>
<td>@getbootstrap</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
<p class="wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
Enable a hover state on table rows within a
<code><tbody></code>.
</p>
<div class="bs-docs-example wow fadeInUp animated" data-wow-delay=".5s" data-aos="fade-right">
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- //typography -->
<!-- News letter -->
<div class="agile-form">
<div class="container" data-aos="fade-left">
<div class="col-md-4 newsletter" >
<p>Subscribe to our newsletter</p>
<h4>For our latest updates</h4>
</div>
<div class="col-md-8">
<form action="#" method="get">
<input type="email" name="email" inputmode="email" style="text-transform: lowercase"
placeholder="Enter Your Email Address" required />
<input type="submit" value="" />
</form>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- News letter -->
<!-- Footer -->
<div class="footer w3ls">
<div class="container">
<div class="footer-main">
<div class="footer-top" data-aos="fade-right">
<div class="col-md-4 ftr-grid fg1">
<h3>opening timings</h3>
<p>
<span class="fa fa-clock-o" aria-hidden="true"></span><span class="day">Mon - friday</span> : 9am to 8pm
</p>
<p>
<span class="fa fa-clock-o" aria-hidden="true"></span><span class="day">Saturday</span> : 9am to 5pm
</p>
<p>
<span class="fa fa-clock-o" aria-hidden="true"></span><span class="day">Sunday</span> : 6am to 11pm
</p>
</div>
<div class="col-md-4 ftr-grid fg2 mid-gd">
<h3>Our Address</h3>
<div class="ftr-address">
<div class="local">
<i class="fa fa-map-marker" aria-hidden="true"></i>
</div>
<div class="ftr-text">
<p>Lorem ipsum dolor sit amet.</p>
</div>
<div class="clearfix"></div>
</div>