-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1510 lines (1449 loc) · 47.8 KB
/
index.html
File metadata and controls
executable file
·1510 lines (1449 loc) · 47.8 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
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>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>A Street Cafe — 100% Free Fully Responsive HTML5 Template by FREEHTML5.co</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Free HTML5 Template by FREEHTML5.CO" />
<meta name="keywords" content="free html5, free template, free bootstrap, html5, css3, mobile first, responsive" />
<meta name="author" content="FREEHTML5.CO" />
<!--
//////////////////////////////////////////////////////
FREE HTML5 TEMPLATE
DESIGNED & DEVELOPED by FREEHTML5.CO
Website: http://freehtml5.co/
Email: info@freehtml5.co
Twitter: http://twitter.com/fh5co
Facebook: https://www.facebook.com/fh5co
Edited by: Anthony Bell
//////////////////////////////////////////////////////
-->
<!-- Facebook and Twitter integration -->
<meta property="og:title" content=""/>
<meta property="og:image" content=""/>
<meta property="og:url" content=""/>
<meta property="og:site_name" content=""/>
<meta property="og:description" content=""/>
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Playfair+Display:400,700,400italic,700italic|Merriweather:300,400italic,300italic,400,700italic' rel='stylesheet' type='text/css'>
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Simple Line Icons -->
<link rel="stylesheet" href="css/simple-line-icons.css">
<!-- Datetimepicker -->
<link rel="stylesheet" href="css/bootstrap-datetimepicker.min.css">
<!-- Flexslider -->
<link rel="stylesheet" href="css/flexslider.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="fh5co-container">
<div id="fh5co-home" class="js-fullheight" data-section="home">
<div class="flexslider">
<div class="fh5co-overlay"></div>
<div class="fh5co-text">
<div class="container">
<div class="row">
<h1 class="to-animate">A Street Cafe</h1>
<h2 class="to-animate"><span>151 W A St, Dixon, CA 95620</span></h2>
<h2 class="to-animate"><span>(707) 678-1521</span></h2>
</div>
</div>
</div>
<ul class="slides">
<li style="background-image: url(images/homeImage2.JPG);" data-stellar-background-ratio="0.5"></li>
<li style="background-image: url(images/homeImage1.JPG);" data-stellar-background-ratio="0.5"></li>
<li style="background-image: url(images/homeImage3.JPG);" data-stellar-background-ratio="0.5"></li>
</ul>
</div>
</div>
<div class="js-sticky">
<div class="fh5co-main-nav">
<div class="container-fluid">
<div class="fh5co-menu-1">
<a href="#" data-nav-section="home">Home</a>
<a href="#" data-nav-section="about">About</a>
<a href="#" data-nav-section="features">Features</a>
</div>
<div class="fh5co-logo">
<a href="index.html">A Street Cafe</a>
</div>
<div class="fh5co-menu-2">
<a href="#" data-nav-section="menu">Menu</a>
<a href="#" data-nav-section="events">Events</a>
<!-- <a href="#" data-nav-section="reservation">Reservation</a> -->
</div>
</div>
</div>
</div>
<div id="fh5co-about" data-section="about">
<div class="fh5co-2col fh5co-bg to-animate-2" style="background-image: url(images/restaurantPic.jpg)"></div>
<div class="fh5co-2col fh5co-text">
<h2 class="heading to-animate">About Us</h2>
<p class="to-animate"><span class="firstcharacter"></span></br></br></br></br></br></br>Something can go here if you guys want an "About Us". (Optional)</br></br></br></br></br></br></br></br></br></br></p>
<!-- <p class="text-center to-animate"><a href="#" class="btn btn-primary btn-outline">Get in touch</a></p> -->
</div>
</div>
<div id="fh5co-sayings">
<div class="container">
<div class="row to-animate">
<div class="flexslider" >
<ul class="slides">
<li>
<blockquote>
<p>“You have got to go here on a Friday night when you're able because if you don't you're missing out.”</p>
<p class="quote-author">— Timothy Brown
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked">
</p>
</blockquote>
</li>
<li>
<blockquote>
<p>“The Tri-tip dip is one of my favorites and the omelets are very good.”</p>
<p class="quote-author">— John Risso
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star "></span>
</p>
</blockquote>
</li>
<li>
<blockquote>
<p>“This place is awesome. The food is delicious and the serving sizes are great.”</p>
<p class="quote-author">— David Crouch
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</p>
</blockquote>
</li>
<li>
<blockquote>
<p>“Tri-tip Fridays. That is all.”</p>
<p class="quote-author">— Malik Durojaiye
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</p>
</blockquote>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="fh5co-featured" data-section="features">
<div class="container">
<div class="row text-center fh5co-heading row-padded">
<div class="col-md-8 col-md-offset-2">
<h2 class="heading to-animate">Featured Dishes</h2>
<p class="sub-heading to-animate">Some of our most popular dishes.</br></p>
<p class="sub-heading2 to-animate">* part of our Homestyle Friday Dinners.</p>
</div>
</div>
<div class="row">
<div class="fh5co-grid">
<div class="fh5co-v-half to-animate-2">
<div class="fh5co-v-col-2 fh5co-bg-img" style="background-image: url(images/2egg.jpg)"></div>
<div class="fh5co-v-col-2 fh5co-text fh5co-special-1 arrow-left">
<h2>Two Egg Breakfast</h2>
<span class="pricing">$8.75</span>
<p>Includes hash browns or country potatoes and toast, and your choice of sausage or bacon.</p>
</div>
</div>
<div class="fh5co-v-half">
<div class="fh5co-h-row-2 to-animate-2">
<div class="fh5co-v-col-2 fh5co-bg-img" style="background-image: url(images/eggsBenny.jpg)"></div>
<div class="fh5co-v-col-2 fh5co-text arrow-left">
<h2>Eggs Benedict</h2>
<span class="pricing">$10.99</span>
<p>Grilled sliced ham on English muffins, topped with
poached eggs, hollandaise sauce, with choice of potatoes.</p>
</div>
</div>
<div class="fh5co-h-row-2 fh5co-reversed to-animate-2">
<div class="fh5co-v-col-2 fh5co-bg-img" style="background-image: url(images/omelet.jpg)"></div>
<div class="fh5co-v-col-2 fh5co-text arrow-right">
<h2>Ham & Cheese Omelet</h2>
<span class="pricing">$8.75</span>
<p>Your choice of cheese.</p>
</div>
</div>
</div>
<div class="fh5co-v-half">
<div class="fh5co-h-row-2 fh5co-reversed to-animate-2">
<div class="fh5co-v-col-2 fh5co-bg-img" style="background-image: url(images/grilledSalmon.jpg)"></div>
<div class="fh5co-v-col-2 fh5co-text arrow-right">
<h2>Grilled Salmon*</h2>
<span class="pricing">$4.99</span>
<p>Grilled Salmon on top of rice with a side of asparagus.</p>
</div>
</div>
<div class="fh5co-h-row-2 to-animate-2">
<div class="fh5co-v-col-2 fh5co-bg-img" style="background-image: url(images/kebab.JPG)"></div>
<div class="fh5co-v-col-2 fh5co-text arrow-left">
<h2>Lamb Kebab*</h2>
<span class="pricing">$8.50</span>
<p>Far far away, behind the word mountains.</p>
</div>
</div>
</div>
<div class="fh5co-v-half to-animate-2">
<div class="fh5co-v-col-2 fh5co-bg-img" style="background-image: url(images/meatloaf.jpg)"></div>
<div class="fh5co-v-col-2 fh5co-text fh5co-special-1 arrow-left">
<h2>Meatloaf & Mashed Potatoes*</h2>
<span class="pricing">$12.99</span>
<p>Meatloaf topped with onions and mushrooms, with a side of asparagus and mashed potatoes.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <div id="fh5co-type" style="background-image: url(images/slide_3.jpg);" data-stellar-background-ratio="0.5">
<div class="fh5co-overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-3 to-animate">
<div class="fh5co-type">
<h3 class="with-icon icon-1">Fruits</h3>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
</div>
</div>
<div class="col-md-3 to-animate">
<div class="fh5co-type">
<h3 class="with-icon icon-2">Sea food</h3>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
</div>
</div>
<div class="col-md-3 to-animate">
<div class="fh5co-type">
<h3 class="with-icon icon-3">Vegetables</h3>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
</div>
</div>
<div class="col-md-3 to-animate">
<div class="fh5co-type">
<h3 class="with-icon icon-4">Meat</h3>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
</div>
</div>
</div>
</div>
</div> -->
<div id="fh5co-menus" data-section="menu">
<div class="container">
<div class="row text-center fh5co-heading row-padded">
<div class="col-md-8 col-md-offset-2">
<h2 class="heading to-animate">Food Menu</h2>
<!-- <p class="sub-heading to-animate">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p> -->
</div>
</div>
<div class="row row-padded">
<div class="col-md-6">
<div class="fh5co-food-menu to-animate-2">
<h2 class="fh5co-drinks">Cold Sandwiches</h2>
<ul>
<li>
<div class="fh5co-food-desc">
<figure>
<!-- <img src="images/res_img_5.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co"> -->
</figure>
<div>
<h3>Turkey</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$7.99
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<!-- <img src="images/res_img_6.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co"> -->
</figure>
<div>
<h3>Roast Beef</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$7.99
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<!-- <img src="images/res_img_7.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co"> -->
</figure>
<div>
<h3>Egg Salad</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$6.50
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<!-- <img src="images/res_img_5.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co"> -->
</figure>
<div>
<h3>Tuna</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$6.99
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<!-- <img src="images/res_img_5.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co"> -->
</figure>
<div>
<h3>Pastrami</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$7.99
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-6">
<div class="fh5co-food-menu to-animate-2">
<h2 class="fh5co-dishes">Hamburgers/Other</h2>
<ul>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_3.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Hamburger</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$7.99
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_4.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Cheeseburger</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$8.75
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_2.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Bacon Cheeseburger</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.95
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Double Cheeseburger</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.75
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Ortega Burger</h3>
<p>Ortega chili & hot pepper cheese.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.75
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Works Burger</h3>
<p>Bacon, cheese & avocado.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$10.50
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Pastrami Burger</h3>
<p>Hamburger patty topped with grilled pastrami & Swiss cheese.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.75
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Chicken Strips</h3>
<p>Served with fries and special sauce.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$7.50
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-6">
<div class="fh5co-food-menu to-animate-2">
<h2 class="fh5co-drinks">Salads</h2>
<ul>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_5.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Chef Salad</h3>
<p>Lettuce, tomato, onions, bell peppers, eggs, cheese,</br> turkey, and ham.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$7.99
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_6.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Tuna</h3>
<p>Tomato stuffed with tuna on a bed of lettuce, egg and </br>shredded cheese.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$7.99
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_7.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Chicken Strip Salad</h3>
<p>Diced deep fried chicken tenders, lettuce, tomato, onions,</br> cheese
bell peppers, eggs, croutons, and avocado. </br>Choices of dressing:
Bleu Cheese, Italian, Ranch, </br>Thousand Island and Balsamic Vinigarette</p>
</div>
</div>
<div class="fh5co-food-pricing">
$8.50
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-6">
<div class="fh5co-food-menu to-animate-2">
<h2 class="fh5co-dishes">Breakfast</h2>
<ul>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_3.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>One Egg Breakfast</h3>
<p>Ham.....................................$8.00.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$7.00
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_4.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Two Egg Breakfast</h3>
<p>Ham.....................................$9.75.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$8.75
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_4.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Three Egg Breakfast -- ADD</h3>
<p>ADD cheese.......................$1.00.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$1.99
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_2.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Hot Link & Eggs</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.70
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Chicken Fried Steak & Eggs</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$11.00
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Linguica & Eggs</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.75
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Diced Ham & Eggs</h3>
<p>ADD cheese......................$1.00.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$8.75
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-6">
<div class="fh5co-food-menu to-animate-2">
<h2 class="fh5co-drinks">Specialty Items</h2>
<ul>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_5.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Biscuits & Gravy</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$4.95
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_6.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>A Street Scramble</h3>
<p>Grilled sourdough topped with sausage, scrambled eggs, </br>cheddar cheese,
gravy, & green onions & toast.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.75
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_7.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Farm House</h3>
<p>Hash browns, onions, bacon, tomatoes, mixed </br>together & topped with scrammbled eggs,
hollandaise </br>sauce, cheddar cheese, & green onions & toast.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$10.75
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_7.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Eggs Benedict</h3>
<p>Grilled sliced ham on English muffins, topped with </br>poached eggs, hollandaise sauce, with
choice of potatoes.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$10.99
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_7.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Cook's Goulash</h3>
<p>Diced ham, onions, bell peppers, hash browns, scrambled </br>eggs mixed together. Choice
of toast or tortillas, served with salsa.
</p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.50
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<p>ADD cheese...........$1.00</p>
</div>
</div>
<div class="fh5co-food-pricing">
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-6">
<div class="fh5co-food-menu to-animate-2">
<h2 class="fh5co-dishes">Pancakes & More</h2>
<ul>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_3.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Short Stack (2 pancakes)</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$4.50
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_4.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Regular Stack (3 pancakes)</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$7.75
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_4.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Pancake Breakfast</h3>
<p>3 pancakes, 2 eggs, & choice of bacon or sausage.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$7.75
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_2.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>French Toast</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$5.25
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Homestyle Waffle</h3>
<p>ADD Fruit and Whipped Cream............$1.50</p>
</div>
</div>
<div class="fh5co-food-pricing">
$3.50
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<p>ADD Blueberries to pancakes................$1.50</p>
</div>
</div>
<div class="fh5co-food-pricing">
</div>
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6">
<div class="fh5co-food-menu to-animate-2">
<h2 class="fh5co-dishes">Omelets</h2>
<ul>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_3.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Cheese (your choice of cheese)</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$7.25
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_4.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Ham & Cheese (your choice of cheese)</h3>
<p></p>
</div>
</div>
<div class="fh5co-food-pricing">
$8.75
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_2.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Bacon or Sausage or Ham</h3>
<p>Bell peppers, onions, and your choice of cheese.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$8.95
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Linguica</h3>
<p>Bell peppers, onions, and your choice of cheese.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.25
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Hot Link</h3>
<p>Bell peppers, onions, and hot pepper cheese.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.50
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Ortega</h3>
<p>Ortega chili, ham, onions, bell peppers, and your choice</br> of Jack
or hot pepper cheese, topped with salsa upon request.
</p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.50
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>California</h3>
<p>Bacon, avocado, and your choice of Swiss or Jack cheese.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.75
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>All Meat</h3>
<p>Bacon, sausage, ham, linguica, and your choice of cheese.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$10.50
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<h3>Garden Omelet</h3>
<p>Onions, bell peppers, mushrooms, tomato, avocado, and </br>Jack cheese.</p>
</div>
</div>
<div class="fh5co-food-pricing">
$9.25
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>
<p>ADD Avocado............seasonal price</p>
<p>ADD Mushrooms.................$1.00</p>
<p>ADD Spinach.........................$1.50</p>
</div>
</div>
<div class="fh5co-food-pricing">
</div>
</li>
<li>
<div class="fh5co-food-desc">
<figure>
<img src="images/res_img_8.jpg" class="img-responsive" alt="Free HTML5 Templates by FREEHTML5.co">
</figure>
<div>