-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfood-table.html
85 lines (81 loc) · 2.24 KB
/
food-table.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Food Table</title>
<link rel="shortcut icon" href="./images/rice.jpg" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<style>
table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
}
th {
background-color: #4CAF50;
color: white;
text-align: center;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:hover {
background-color: #ddd;
}
</style>
</head>
<body>
<header>
<h1>The Mustang Food Table</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="food-table.html">Food Table</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="image-gallery.html">Image Gallery</a></li>
<li><a href="order-form.html">Order Form</a></li>
</ul>
</nav>
<div class="content">
<h2>Our Menu</h2>
<table>
<tr>
<th>Dish</th>
<th>Description</th>
<th>Price</th>
</tr>
<tr>
<td>Jollof Rice</td>
<td>A sweet one-pot dish with rice, tomatoes, and spices.</td>
<td>10000</td>
</tr>
<tr>
<td>Pounded Yam and Egusi Soup</td>
<td>A delicious combination of pounded yam and melon seed soup.</td>
<td>15000</td>
</tr>
<tr>
<td>Suya</td>
<td>Spicy skewered meat grilled to perfection.</td>
<td>12000</td>
</tr>
<tr>
<td>Fried Plantains</td>
<td>Sweet and crispy fried plantains.</td>
<td>5000</td>
</tr>
<tr>
<td>Moi Moi</td>
<td>Steamed bean pudding made from peeled beans, onions, and fresh ground peppers.</td>
<td>8000</td>
</tr>
</table>
</div>
</body>
</html>