-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
70 lines (51 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
a {
color: black;
}
</style>
<title>Menu</title>
</head>
<body style=background-color:black;color:white;>
<h1 style=color:red;white;display:inline;margin-left:30px;>KFC</h1>
           
<a href="index.html" style=color:white;font-size:30px;text-decoration:none;>Home</a>
           
<a href="about.html" style=color:white;font-size:30px;text-decoration:none;>About Us</a>
           
<a href="menu.html" style=color:white;font-size:30px;text-decoration:none;>Menu</a>
                                   
                           
                           
                   
<a href="mailto:mudassirtabani@gmail.com" style=color:white;font-size:30px;text-decoration:none;>Feedback</a>
             
<a href="tel:+92 323 3211789">
<img src="Images/whatsapp2.jpg" alt="loading" width="50" height="50">
</a>
<a href="kfc.html">
<img src="Images/uncle.jpg" alt="wait" width="50" height="50" style=float:right;>
</a>
<hr color="red">
<br><br><br><br><br>
<center>
<table border="10" height="60px" width="400px" cellpadding="10px"
style=background-color:orange;color:white;font-size:30px;>
<tr>
<th colspan="3">Items</th>
</tr>
<tr>
<td><a href="burger.html">Burgers</a></td>
<td><a href="broast.html">Broast</a></td>
<td><a href="drinks.html">Drinks</a></td>
</tr>
</table>
</center>
<br></br>
<img src="Images/menu.jpg" alt="" width="100%" style=border:solid 1px white;border-radius:500px;>
</body>
</html>