-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.html
42 lines (36 loc) · 1.09 KB
/
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
<!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><strong>Pan Cake</strong></td>
<td>Flour, milk, sugar,eggs, nutmeg, and butter</td>
<td>#3500</td>
</tr>
<tr>
<td><strong>Smoothie</strong></td>
<td>Fresh bananas, milk, ginger, and ice</td>
<td>#5000</td>
</tr>
<tr>
<td><strong>Iced Tea</strong></td>
<td>Cinnamon sticks, ginger, honey, lime, and ice</td>
<td>#2000</td>
</tr>
</tbody>
</table>
</body>
</html>