-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5.2.5SummaryTable.html
More file actions
58 lines (57 loc) · 1.98 KB
/
5.2.5SummaryTable.html
File metadata and controls
58 lines (57 loc) · 1.98 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
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>A fancy table</title>
<link rel="stylesheet" href="css/summarytable.css">
</head>
<body>
<table>
<thead>
<tr class="main-heading">
<th id="mh-co1" scope="col">Trial</th>
<th id="mh-co2" scope="col">Starter</th>
<th id="mh-co3" scope="col">Premium</th>
<th id="mh-co4" scope="col">VIP</th>
</tr>
<tr class="sub-heading">
<th id="sh-co1" scope="col">Free</th>
<th id="sh-co2" scope="col">$5.99<br>per month</th>
<th id="sh-co3" scope="col">$15.99<br>per month</th>
<th id="sh-co4" scope="col">$29.99<br>per month</th>
</tr>
</thead>
<tbody>
<tr>
<td headers="mh-co1 sh-co1">2hrs/day</td>
<td headers="mh-co2 sh-co2">7hrs/day</td>
<td headers="mh-co3 sh-co3">Unlimited</td>
<td headers="mh-co4 sh-co4">Unlimited</td>
</tr>
<tr>
<td headers="mh-co1 sh-co1">5 channels</td>
<td headers="mh-co2 sh-co2">32 channels</td>
<td headers="mh-co3 sh-co3">Booster Pack - 152 channels</td>
<td headers="mh-co4 sh-co4">Unlimited</td>
</tr>
<tr>
<td headers="mh-co1 sh-co1">-</td>
<td headers="mh-co2 sh-co2">-</td>
<td headers="mh-co3 sh-co3">Free Ello Subscription</td>
<td headers="mh-co4 sh-co4">Free Ello Subscription</td>
</tr>
<tr>
<td headers="mh-co1 sh-co1">Email Support</td>
<td headers="mh-co2 sh-co2">Email Support</td>
<td headers="mh-co3 sh-co3">Email & Call Support</td>
<td headers="mh-co4 sh-co4">Unlimited Email & Call Support</td>
</tr>
</tbody>
<tfoot>
<tr class="buy-now-footer">
<td colspan="4"><a href="http://www.example.com" target="blank">Buy now!</a></td>
</tr>
</tfoot>
</table>
</body>
</html>