-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExercise-5.html
More file actions
38 lines (38 loc) · 901 Bytes
/
Exercise-5.html
File metadata and controls
38 lines (38 loc) · 901 Bytes
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
<!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>
<!-- You can use your own content, or use the following to help get started -->
<!-- just make sure to use the same number of data points -->
<table>
<thead>
<tr>
<th scope="col">Subscription</th>
<th scope="col">Price</th>
<th scope="col">Support</th>
</tr>
</thead>
<tbody>
<tr>
<td>Free</td>
<td>Free</td>
<td>N/A</td>
</tr>
<tr>
<td>Personal</td>
<td>$9.99</td>
<td>Weekdays</td>
</tr>
<tr>
<td>Business</td>
<td>$49.99</td>
<td>24/7</td>
</tr>
</tbody>
</table>
</body>
</html>