mirror of
https://github.com/Nezumi-2711/loi-phan-internship.git
synced 2026-09-22 20:01:33 +00:00
57 lines
1.8 KiB
HTML
57 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Tables</title>
|
|
</head>
|
|
|
|
<body>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th scope="col" bgcolor="#FF5733">Free hosting</th>
|
|
<th scope="col" bgcolor="#FF5733">Premium business hosting</th>
|
|
<th bgcolor="#FF5733">Bussiness hosting</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row" bgcolor="#ACFF33">Disk space</th>
|
|
<td bgcolor="#33F6FF" colspan="2s">250mb</td>
|
|
<td bgcolor="#33F6FF">1gb</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row" bgcolor="#ACFF33">Bandwidth</th>
|
|
<td bgcolor="#33F6FF">50gb per month</td>
|
|
<td bgcolor="#33F6FF" span="2">100gb per montn.</td>
|
|
<td bgcolor="#33F6FF" span="2">150gb per montn.</td>
|
|
</tr>
|
|
<tr>
|
|
<th bgcolor="#ACFF33">Chip</th>
|
|
<td bgcolor="#33F6FF">i5</td>
|
|
<td bgcolor="#33F6FF" colspan="2">i7</td>
|
|
|
|
</tr>
|
|
<tr>
|
|
<th bgcolor="#ACFF33">Domain</th>
|
|
<td bgcolor="#33F6FF" rowspan="2">No</td>
|
|
<td bgcolor="#33F6FF" colspan="2" rowspan="2">Yes</td>
|
|
</tr>
|
|
<tr>
|
|
<th bgcolor="#ACFF33">Email</th>
|
|
</tr>
|
|
<!-- more rows like the two above here -->
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td></td>
|
|
<td colspan="3" bgcolor="#F333FF">Sign up now and save 10%!</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</body>
|
|
|
|
</html> |