-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
179 lines (173 loc) · 4.53 KB
/
menu.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
<!DOCTYPE html>
<html>
<head>
<title>Main Course - Restaurant Website </title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="css/ie7.css">
<![endif]-->
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="css/ie6.css">
<![endif]-->
</head>
<body>
<div id="header"> <!-- start of header -->
<span class="signboard"></span>
<ul id="infos">
<li class="home">
<a href="index.html">HOME</a>
</li>
<li class="phone">
<a href="contact.html">8693012900</a>
</li>
<li class="address">
<a href="contact.html">I.C. COLONY, BORIVALI WEST, MUMBAI-400103</a>
</li>
</ul>
<a href="index.html" id="logo"></a>
<ul id="navigation">
<li><a href="entree.html"><span>Entree</span></a></li>
<li class="main current"><a href="menu.html"><span>Main Course</span></a></li>
<li><a href="desserts.html"><span>Desserts</span></a></li>
<li><a href="drinks.html"><span>Drinks</span></a></li>
<li><a href="gallery.html"><span>Gallery</span></a></li>
</ul> <!-- /#navigation -->
</div> <!-- end of header -->
<div id="contents"> <!-- start of contents -->
<h2 class="main-course"><span>Main Course</span></h2>
<div id="menus">
<ul class="main">
<li>
<h3>VEG.</h3>
<ul>
<li>
<span class="price">RS. 380</span>
VEG. SIZZLER
</li>
<li>
<span class="price">RS. 190</span>
SUBJI KADAI
</li>
<li>
<span class="price">RS. 190</span>
DAL MAKHANI
</li>
<li>
<span class="price">RS. 240</span>
PALAK PANEER
</li>
<li>
<span class="price">RS. 190</span>
VEGETABLE STEW
</li>
</ul>
</li>
<li>
<h3>NON-VEG.</h3>
<ul>
<li>
<span class="price">RS. 395</span>
CHKN/PRAWNS SIZZLER
</li>
<li>
<span class="price">RS. 450</span>
FISH/LAMB SIZZLER
</li>
<li>
<span class="price">RS. 270</span>
BUTTER CHICKEN
</li>
<li>
<span class="price">RS. 260</span>
KOZI CURRY
</li>
<li>
<span class="price">RS. 330</span>
DUM GOSHT
</li>
</ul>
</li>
<li>
<h3>RICE&NOODLES</h3>
<ul>
<li>
<span class="price">RS. 190</span>
FRIED RICE
</li>
<li>
<span class="price">RS.220 </span>
SHANGAI NOODLES
</li>
<li>
<span class="price">RS. 240</span>
TRIPPLE SZEHWAN
</li>
<li>
<span class="price">RS. 260</span>
SPICY CHKN FRIED RICE
</li>
<li>
<span class="price">RS.290</span>
CHKN CHOWMEIN BASKET
</li>
</ul>
</li>
<li>
<h3>BREADS&RICE</h3>
<ul>
<li>
<span class="price">RS. 35</span>
RUMALI ROTI
</li>
<li>
<span class="price">RS. 30</span>
KULCHA/NAN
</li>
<li>
<span class="price"> RS. 160</span>
JEERA RICE
</li>
<li>
<span class="price">RS. 260</span>
SUBJI BIRYANI
</li>
<li>
<span class="price"> RS.290/320 </span>
CHKN/MUTTON BIRYANI
</li>
</ul>
</li>
</ul>
</div>
</div> <!-- end of contents -->
<div id="footer"> <!-- start of footer -->
<ul class="advertise">
<li class="delivery">
<h2>Hungry? We Deliver</h2>
<a href="menu.html">Download our Menu</a>
</li>
<li class="event">
<h2>Party! Party!</h2>
<p>Celebrate your</p>
<p>Special Events with Us</p>
</li>
<li class="connect">
<h2>Let's Keep in Touch</h2>
<a href="http://facebook.com/freewebsitetemplates" target="_blank" class="fb" title="Facebook"></a>
<a href="http://twitter.com/fwtemplates" target="_blank" class="twitr" title="Twitter"></a>
</li>
</ul>
<div>
<ul class="navigation">
<li><a href="index.html">Home</a></li>
<li><a href="booking.html">Book an event</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li class="last"><a href="contact.html">Contact</a></li>
</ul>
<span>© Copyright 2012. All Rights Reserved.</span>
</div>
</div> <!-- end of footer -->
</body>
</html>