Skip to content

Instantly share code, notes, and snippets.

@easonhan007
Created May 12, 2013 03:43
Show Gist options
  • Save easonhan007/5562334 to your computer and use it in GitHub Desktop.
Save easonhan007/5562334 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>
<tr>
<td>cell1</td>
<td>cell2</td>
<td>cell3</td>
</tr>
<tr>
<td>cell1</td>
<td>cell2</td>
<td>cell3</td>
</tr>
<tr>
<td>cell1</td>
<td>cell2</td>
<td>cell3</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment