-
Notifications
You must be signed in to change notification settings - Fork 0
/
Restaurant menu.html
34 lines (33 loc) · 1.51 KB
/
Restaurant 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
<!DOCTYPE html>
<head>
<title>Restaurant starters Menu </title>
<link rel="icon" href="img/restaurant.png">
<body bgcolor="black" style="color:white">
<center>
<img src="img/starters.jpg" width="300px">
<h1>Welcome to Mr.Mini Restaurant 🍽️ </h1>
<h2>Special menu of the day</h2>
</center>
<h3>At our restaurant, we offer a wide range of starters that are perfect for kicking off your meal.
Whether you’re in the mood for something light like a fresh garden salad or something more indulgent
like crispy fried calamari, we have something for every taste. Our starters are designed to be shared,
making them a great way to try a variety of flavors. They’re the perfect introduction to your dining experience here.
</h3>
<center>
<form>
<table>
<tr>
<td>Table number : <input type="number" placeholder="Enter the number"></td>
</tr>
<tr>
<td>Special Starters :<input type="radio" name="food" >CHicken
<input type="radio" name="food" >Kickkuu
<input type="radio" name="food" >TELLOO
</td>
</tr>
</table>
</form>
</center>
</body>
</head>
</html>