HTML5_表格元素

来源:互联网 发布:智能交通算法工程师 编辑:程序博客网 时间:2024/06/10 08:17
<!DOCTYPE html>
<hmtl>
<html  lang="zh-cn">
<head>
<meta charset="utf-8">
<title>基本格式</title>
</head>
<body>
<table  border=“1”  style="width:300px">
<thead>
<tr>
<th>姓名</th>
<th>性别</th>
<th>婚否</th>
</tr>
</thead>
<tr>
<th>张三</th>
<th>男</th>
<th>已婚</th>
</tr>
<tr>
<th>马六</th>
<th>女</th>
<th>未婚</th>
<tfoot>
<td colspan="3">统计二人</td>
</tfoot>
</tr>
</table>
</body>
</html>
0 0
原创粉丝点击