<html>
<head>
<title>HTML thead 标签</title>
</head>
<body>
<table style = "width:100%" border = "1">
<thead>
<tr>
<td colspan = "4">这是表格的头部</td>
</tr>
</thead>
<tfoot>
<tr>
<td colspan = "4">这是表格的底部</td>
</tr>
</tfoot>
<tbody>