-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (52 loc) · 1.17 KB
/
index.html
File metadata and controls
55 lines (52 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>Café Foodie Bhaiya</title>
<style>
body{
background-color: black;
background-size: cover;
}
h1,h2,h4{
color:rgb(73, 167, 167);
font-family: Arial, Helvetica, sans-serif;
}
ul{
color:antiquewhite;
}
p{
color:aliceblue;
}
</style>
</head>
<body>
<p style="color: antiquewhite"></p>
<h1>Café Foodie Bhaiya</h1>
<h2>Menu</h2>
<h4>Breakfast</h4>
<ul>
<li>Poha - 60/-</li>
<li>Idli Sambhar - 120/-</li>
<li>Aloo Sandwich - 55/-</li>
<li>Orange Juice - 50/-</li>
<li>Milk - 40/-</li>
</ul>
<h4>Lunch</h4>
<ul>
<li>Paneer Makhani - 120/-</li>
<li>Garlic Noodles - 150/-</li>
<li>Mushroom Pizza - 180/-</li>
<li>Dosa Sambhar - 120/-</li>
<li>Uttapam - 90/-</li>
</ul>
<h4>Dinner</h4>
<ul>
<li>Dal Makhani - 115/-</li>
<li>Garlic Naan - 50/-</li>
<li>Manchurian Rolls - 60/-</li>
</ul>
<p>Thanks for Visiting!</p>
<p>Please do fill out our <a href="feedback.html">feedback form!</a>.</p>
</p>
</body>
</html>