-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (78 loc) · 3.34 KB
/
Copy pathindex.html
File metadata and controls
88 lines (78 loc) · 3.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MENU CARD</title>
</head>
<body>
<center>
<font size="5" color="red"><h1>Delicious Resturant Menu</h1></font>
<font size="3" color="black"><p>Welcome to our Resturant! Choose your favourite dish <br>
from our menu below</p></font>
</center>
<table border="5" cell padding="20" width="300" align="center">
<tr>
<th colspan="2" bgcolor="red" >Starters</th>
</tr>
<tr>
<td><img src="fries.jpg" width="100"></td>
<td><b>Garlic Mayo Fries </b><br> crispy and fresh fries with creamy gaarlic mayo <br> <font size="2" color="red">Rs:300 <br>order now</font></td>
</tr>
<tr>
<td ><img src="./bread.jpg" width="100" ></td>
<td><b>Garlic Bread</b><br>Freshly Backed Garlic Bread with Oregano and chilli flakes seasoning <br><font size="2" color="red">Rs:500 <br>Order Now</font></td>
</tr>
</center>
<center>
<table border="5" width="300" align="center">
<tr>
<th colspan="2" bgcolor="red">Main Course</th>
</tr>
<tr>
<td><img src="./pizza.jpg" width="100" height="100" ></td>
<td><b>Pizza</b><br> Chicken pizza topped with fresh vegetables, olives, Basil leaves and a lots of cheese <br><font size="2" color="red">Rs:699 <br> Order Now</font></td>
<tr>
<td><img src="./chowmein.jpg" width="100"></td>
<td><b>veg chowmein</b><br> vegetable chowmein tossed with sauces and spices <br> <font size="2" color="red">Rs:900 <br> Order Now</font></td>
</tr>
</tr>
</table>
</center>
<center>
<table border="5" width="300" align="center">
<tr>
<th colspan="2" bgcolor="red">Desserts</th>
</tr>
<tr>
<td><img src="./tea.jpg" width="100"></td>
<td><b>Boba milk tea </b><br>fresh and milky boba tea topped with fresh cream and chocolate edible balls <br><font size="2" color="red">Rs:1150 <br>Order Now</font></td>
</tr>
<tr>
<td><img src="./cake.jpg" alt="" width="100"></td>
<td><b>Belgium Choclate Cake</b> <br> Choclated Cake coated with thick and creamy belgium choclate <br> <font size="2" color="red">Rs:1200 <br> Order Now</font></td>
</tr>
</table>
</center>
<center>
<table border="5" width="300" align="center">
<tr>
<th colspan="2" bgcolor="red">Drinks</th>
<tr>
<td><img src="./coffee.jpg" width="100"></td>
<td><b>Cold Coffee </b> <br>coffee with milk and sugar with ice <br><font size="2" color="red">Rs:350 <br> Order Now</font></td>
</tr>
</tr>
<tr>
<td><img src="./mint margitaaaa.jpg" width="100"></td>
<td><b>Mint Margrita</b><br> Refreshring drink with mint and soda <br><font size="2" color="red">Rs:300 <br> Order Now</font></td>
</tr>
</table>
</center>
<center>
<font><p>Thanks for visiting! Enjoy your meals</p></font>
<font color="red"><p>Visit Our Website</p></font>
</center>
</table>
</body>
</html>