console
<!DOCTYPE html>
<html>
<head>
<meta charset="UTf=8">
<title>data-table</title>
<style>
.p1{
font-weight:900;
.p2{color:red;}
</style>
</head>
<body>
<div class="data-table">
<div class="p1">HTML表格实例:</div>
<table border="33">
<thead>
<tr style="background-color:green;">
<th>First name</th>
<th>Last name</th>
<th>Point</th>
</tr>
</thead>
<tbody>
<tr>
<td style="color:red">Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td style="color:red">Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
<tr>
<td style="color:red">John</td>
<td>Doe</td>
<td>80</td>
</tr>
<tr>
<td style="color:red">Adam</td>
<td>Johnson</td>
<td>67</td>
</tr>
</tbody>
</table>
</body>
</html>