-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
55 lines (54 loc) · 1.49 KB
/
table.html
File metadata and controls
55 lines (54 loc) · 1.49 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<table border="">
<thead>
<tr>
<th rowspan="2">Day</th>
<th colspan="2">Lunch special</th>
<th rowspan="2">Discount</th>
</tr>
<tr>
<th>item</th>
<th>price</th>
</tr>
</thead>
<tbody>
<tr>
<th>Monday</th>
<td>Fish&Chips</td>
<td>$12.99</td>
<td rowspan="3">20%Off</td>
</tr>
<tr>
<th>Tuesday</th>
<td>Chicken Wings</td>
<td>$14.99</td>
</tr>
<tr>
<th>Weday</th>
<td>Burger Combo</td>
<td>$11.99</td>
</tr>
<tr>
<th>Thruday</th>
<td colspan="2">Buy 1 Get 1 free fries</td>
<td>50%Off</td>
</tr>
<tr>
<th>friday</th>
<td colspan="2">Buy 1 Get 1 free pizza</td>
<td>15%Off</td>
</tr>
</tbody>
<tfoot>
<td colspan="4"><center>Offer valid end of the month</center></td>
</tfoot>
</table>
</body>
</html>