-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (119 loc) · 4.89 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>David's Restaurant</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/mystyle.css">
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lora:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav id="header-nav" class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a href="index.html" class="pull-left visible-md visible-lg">
<div id="logo-img" alt="Logo Image"></div>
</a>
<div class="navbar-brand">
<a href="index.html" >
<h1>David's Chu China Bistro</h1>
</a>
<p>
<img src="images/star-k-logo.png" alt="Kosher-Certified">
<span>Kosher Certified</span>
</p>
</div>
<button id="navbarToggle" type = "button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#collapsable-nav" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="collapsable-nav" class="collapse navbar-collapse">
<ul id="nav-list" class="nav navbar-nav navbar-right">
<li class="visible-xs active">
<a href="index.html">
<span class="glyphicon glyphicon-home">
</span>Home</a>
</li>
<li>
<a href="menu-categories.html">
<span class="glyphicon glyphicon-cutlery">
</span><br class="hidden-xs">Menu</a>
</li>
<li>
<a href="menu-categories.html">
<span class="glyphicon glyphicon-info-sign">
</span><br class="hidden-xs">About</a>
</li>
<li>
<a href="menu-categories.html">
<span class="glyphicon glyphicon-certificate">
</span><br class="hidden-xs">Awards</a>
</li>
<li class="hidden-xs" id="phone">
<a href="tel:410-602-5008">
<span>410-602-5008</span></a><div> * We Deliver</div>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div id="call-btn" class="visible-xs">
<a class="btn" href="tel:410-602-5008">
<span class="glyphicon glyphicon-earphone" ></span>
410-602-5008</a>
</div>
<div id="xs-deliver" class="text-center visible-xs">* We Deliver</div>
<div id="main-content" class="container">
<div class="jumbotron">
<img src="images/jumbotron_768.jpg" class="img-responsive visible-xs" alt="Picture of Restaurant">
</div>
<div id="home-tiles" class="row">
<div class="col-md-4 col-sm-6 col-xs-12">
<a href="menu-categories.html"><div id="menu-tile"><span>menu</span></div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<a href="single-categories.html"><div id="specials-tile"><span>specials</span></div>
</div>
<div class="col-md-4 col-sm-12 col-xs-12">
<a href="https://goo.gl/maps/1iKD5MbkjYy6Uhe57" target="_blank"><div id="map-tile"><span>map</span>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3084.675246405348!2d-76.71387678513979!3d39.36359027950144!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c81a14e7817803%3A0xab20a0e99daa17ea!2sDavid%20Chu's%20China%20Bistro!5e0!3m2!1sen!2sin!4v1595615480138!5m2!1sen!2sin" width="100%" height="250px" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe></div></a>
</div>
</div><!--End of Home Tiles-->
</div><!--End of main-content-->
<footer class="panel-footer">
<div class="container">
<div class="row">
<section id="hours" class="col-sm-4">
<span>Hours:</span><br>
Sun-Thurs: 11:15am - 10:00pm<br>
Fri: 11:15am - 2:30pm<br>
Saturday Closed
<hr class="visible-xs">
</section>
<section id="address" class="col-sm-4">
<span>Address:</span><br>
7105 Reisterstown Road<br>
Baltimore, MD 21215
<p>* Delivery area within 3-4 miles, with minimum order of $20 plus $3 charge for all deliveries.</p>
<hr class="visible-xs">
</section>
<section id="testimonials" class="col-sm-4">
<p>"The best Chinese restaurant I've been to! And that's saying a lot, since I've been to many!"</p>
<p>"Amazing food! Great service! Couldn't ask for more! I'll be back again and again!"</p>
</section>
</div>
<div class="text-center">
© Copyright David Chu's China Bistro 2016</div>
</div>
</footer>
<script src="js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/myscript.js"></script>
</body>
</html>