console
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>标题</title>
</head>
<body>
<h1><font-size:10px>标题</font-size:10px></h1>
<body style="background-color:pink;">
<table border="10">
<thead class="table body">
<thead style="background-color:green">
<tr>
<td> <font color="red">frist name</font></td>
<td>last name</td>
<td>points</td>
<tr style="background-color:red">
</tr>
<tr>
<td><font color="red">jill</font></td>
<td>smith</td>
<td>50</td>
</tr>
<tr>
<td><font color="red">Eve</font></td>
<td>john</td>
<td>94</td>
</tr>
<tr>
<td><font color="red">Adam</font></td>
<td>Jrhson</td>
<td>67</td>
</tr>
</table>
</body>
</html>