-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (90 loc) · 2.2 KB
/
index.html
File metadata and controls
92 lines (90 loc) · 2.2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Table</title>
<link rel="stylesheet" href="assets/style/style.css" />
</head>
<body>
<main>
<table id="tarrifs">
<thead>
<tr>
<th rowspan="3">Choose your plan</th>
<th>starter</th>
<th>econom</th>
<th>standart</th>
<th>professional</th>
</tr>
<tr>
<th>$10</th>
<th>$30</th>
<th>$59</th>
<th>$99</th>
</tr>
<tr>
<th>per month</th>
<th>per month</th>
<th>per month</th>
<th>per month</th>
</tr>
</thead>
<tbody>
<tr>
<th>Amount of space</th>
<td>20GB</td>
<td>40GB</td>
<td>110GB</td>
<td>Unlimited</td>
</tr>
<tr>
<th>Bandwidth per month</th>
<td>120GB</td>
<td>240GB</td>
<td>610GB</td>
<td>1300GB</td>
</tr>
<tr>
<th>Email accounts</th>
<td>1</td>
<td>15</td>
<td>60</td>
<td>Unlimited</td>
</tr>
<tr>
<th>MySQL databases</th>
<td>1</td>
<td>15</td>
<td>60</td>
<td>Unlimited</td>
</tr>
<tr>
<th>25h support</th>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<th>Support tickets per month</th>
<td>2</td>
<td>6</td>
<td>14</td>
<td>20</td>
</tr>
</tbody>
<tfoot>
<tr>
<th></th>
<td><a href="#" tabindex="1">start</a></td>
<td><a href="#">start</a></td>
<td><a href="#">start</a></td>
<td><a href="#">start</a></td>
</tr>
</tfoot>
</table>
</main>
</body>
</html>