-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChallenge 12_ The Dinner table.html
46 lines (41 loc) · 1.14 KB
/
Challenge 12_ The Dinner 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Challenge: The dinner table</title>
</head>
<body>
<h1>Our dinner menu</h1>
<table>
<thead>
<tr>
<th>Meal</th>
<th>Ingredients</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Fried Rice</td>
<td> Rice & Spieces</td>
<td> 2000</td>
</tr>
<tr>
<td>Pizza</td>
<td> Chicken & Speices</td>
<td> 4000</td>
</tr>
<tr>
<td>Yam porridge</td>
<td> Yam & Speices</td>
<td> 1000</td>
</tr>
<tr>
<td>Spahgetti & Stew</td>
<td> Spahgetti, etc..</td>
<td> 1000</td>
</tr>
</tbody>
</table>
</body>
</html>