html基础基础
<link rel="stylesheet" href="./style.css"/>//引入CSS
<script src="./mian.js"></script>//引入js
Html的表格
<table>
<thead>
<tr>
<th>姓名</th>
<th>性别</th>
<th>年龄</th>
</tr>
</thead>
<tbody>
<tr>
<th>xiaohu</th>
<th>男</th>
<th>19</th>
</tr>
<tr>
<th>xiaoli</th>
<th>女</th>
<th>19</th>
</tr>
</tbody>
</table>