Skip to content

Instantly share code, notes, and snippets.

@easonhan007
Created May 12, 2013 03:55
Show Gist options
  • Save easonhan007/5562355 to your computer and use it in GitHub Desktop.
Save easonhan007/5562355 to your computer and use it in GitHub Desktop.
有表头的表格
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>有表头的表格</title>
</head>
<body>
<h3>有的表格-3行3列</h3>
<table border >
<thead>
<th>姓名</th>
<th>年龄</th>
<th>性别</th>
</thead>
<tbody>
<tr>
<td>tom</td>
<td>20</td>
<td>男</td>
</tr>
<tr>
<td>jerry</td>
<td>20</td>
<td>男</td>
</tr>
<tr>
<td>micky</td>
<td>12</td>
<td>男</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment