-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
137 lines (134 loc) · 4.47 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
<!doctype html>
<html>
<head>
<title>Foodie</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/960_12_col.css">
<link rel="stylesheet" href="css/text.css">
<link rel="stylesheet" href="css/combinedCss.css">
</head>
<body>
<header>
<h1>Foodie</h1>
<div id="cart"><img src="images/cart.jpg" alt="Cart"></div>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Reviews</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">About Us</a></li>
</ul>
<!-- <div><a href="home.html">Home</a></div>
<div><a href="menu.html">Menu</a></div>
<div><a href="#">Gallary</a></div>
<div><a href="#">Reviews</a></div>
<div><a href="#">Blog</a></div>
<div><a href="#">About Us</a></div>
<div id="cart"><img src="images/cart.jpg" alt="Cart"></div> -->
</header>
<div class="bar"></div>
<div class="content container_12">
<div class="grid_4">
<img src="images/breakfast.png" alt="Breakfast">
<div>
<h3>Breakfast</h3>
<p>We assure you that our breakfasts - yes, there is sausage and eggs, aloo paratha and more- will make you feel really, really good!</p>
</div>
</div>
<div class="grid_4">
<img src="images/lunch.png" alt="Lunch">
<div>
<h3>Lunch</h3>
<p>We say Lunch has to be the most crucial meal of the day. Why? Because you already had a meeting and you are going in one that'll last for hours. The least a human deserves is the power of great meals to make him superman like through the day. Take a look at our delish meals </p>
</div>
</div>
<div class="grid_4">
<img src="images/tea.png" alt="Tea">
<div>
<h3>Tea</h3>
<p>India wouldn't be half as cool without its array of snacks. We've got that covered- from essentially Indian to very pardesi- all of it, delivered at yours.</p>
</div>
</div>
<div class="grid_4">
<img src="images/dinner.png" alt="Dinner">
<div>
<h3>Dinner</h3>
<p>Wondering what's for dinner? Why wonder when our chefs are at your disposal! Get an array of mouthwatering dinners, put together with love by our chefs for you to sleep happy, content and satisfied- a great trick to have good dreams.</p>
</div>
</div>
<div class="grid_4">
<img src="images/breakfast.png" alt="Breakfast">
<div>
<h3>Diwali Special</h3>
<p>Diwali is here. Find all types of special food on Foodie this Diwali</p>
</div>
</div>
<div class="grid_4">
<img src="images/lunch.png" alt="Lunch">
<div>
<h3>Wraps</h3>
<p>Something we have to write here</p>
</div>
</div>
<div class="grid_4">
<img src="images/tea.png" alt='Desserts'>
<div>
<h3>Desserts</h3>
<p>Something we have to write here</p>
</div>
</div>
<div class="grid_4">
<img src="images/dinner.png" alt='Biriyanis'>
<div>
<h3>Biriyani</h3>
<p>Something we have to write here</p>
</div>
</div>
<div class="grid_4">
<img src="images/breakfast.png" alt="Nothing Yet">
<div>
<h3>Something</h3>
<p>Something we have to write here</p>
</div>
</div>
</div>
<footer>
<div class="grid_4">
<ul>
<li><h1>Foodie</h1></li>
<li><a href="#">About us</a></li>
<li><a href="#">Carrers</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
<div class="grid_3">
<ul>
<li><h3>We serve at</h3></li>
<li><a href="#">Bangalore</a></li>
<li><a href="#">Hyderabad</a></li>
<li><a href="#">Delhi</a></li>
<li><a href="#">Pune</a></li>
</ul>
</div>
<div class="follow grid_3">
<h3>Follow us at</h3>
<ul>
<li><a href="#" ><img src="images/facebook.png" alt="facebook"></a></li>
<li><a href="#" ><img src="images/twitter.png" alt="Twitter"></a></li>
<li><a href="#" ><img src="images/youtube.png" alt="Youtube"></a></li>
<li><a href="#" ><img src="images/instagram.png" alt="Instagram"></a></li>
</ul>
</div>
<div class="grid_3">
<ul>
<li><h3>HeadQuarters</h3></li>
<li>Koramanagala</li>
<li>Bangalore<br><br></li>
<li>Phone no: 9123251343</li>
<li>Email: [email protected]</li>
</ul>
</div>
</footer>
</body>
</html>