-
Notifications
You must be signed in to change notification settings - Fork 0
/
Menu.html
60 lines (51 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu</title>
<style>
footer {
text-align: center;
padding: 3px;
background-color: rgb(57, 205, 250);
}
</style>
</head>
<body>
<a href="index.html" target="_blank">Home</a>
<a href="Menu.html">Menu</a>
<a href="about.html" target="_blank">About Us</a>
<h1 style="background-color:rgb(57, 205, 250);" align="center">Menu</h1>
<img src="pizza 2.png" alt="pizza" width="700" height="500">
<h1>PIZZA</h1>
<ul>
<li>Hot n Spicy Pizza---------------------------------------------RS:1000</li>
<li>Veggie Pizza--------------------------------------------RS:1000</li>
<li>Pepperoni Pizza--------------------------------------------RS:1000</li>
<li>Meat Pizza--------------------------------------------RS:1000</li>
</ul>
<hr />
<img src="burger.png" alt="Burger" width="700" height="500" >
<h1>BURGER</h1>
<ul>
<li>Lamb Burger----------------------------------------RS:1000</li>
<li>Chicken Burger-------------------------------------RS:600</li>
<li>Cheese BurgerZ-------------------------------------RS:700 </li>
<li>Classic Burger-------------------------------------RS:500</li>
</ul>
<hr />
<img src="juices.jfif" alt="Juice" width="700" height="500">
<h1>JUICES</h1>
<ul>
<li>Lemon Juice--------------------------------------RS:250</li>
<li>Lemonade-----------------------------------------RS:250</li>
<li>Apple Juice--------------------------------------RS:300</li>
<li>Orange Juice-------------------------------------RS:300</li>
</ul>
<footer>
<p><a href="mailto:someone@example.com">E.mail:someone@example.com</a></p>
<a href="tel:123456789">Phone Number:123456789</a>
</footer>
</body>
</html>