1. 程式人生 > >5月個人技術考核

5月個人技術考核

創建表格

<html>
<head>
<title>創建表格</title>
</head>
<body>
<table border="1">
<tr><!--標簽定義-->
<td>row 1, cell 1</td><!-定義單元格->
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
</body>
</html>

5月個人技術考核