1. 程式人生 > >表格與例項

表格與例項

 <table> 標籤定義 HTML 表格

<tr> 元素定義表格行,<th> 元素定義表頭,<td> 元素定義表格單元。

<table><tr><td><th>標籤運用寫出簡單表格

<body>
        <table border="1px"  style="width: auto;"><!--設寬高值和邊框-->
            <tr> <!--行-->
                <th>單元格1</th> <!--表頭   列-->
                <th>單元格2</th>
                <th>單元格3</th>
            </tr>
            <tr>
                <td colspan="2">單元格4</td><!--橫向合併單元格-->
                <td rowspan="2">單元格5</td><!--縱向合併單元格-->
            </tr>
        </table>
</body>

簡歷表例項

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title algin="center">簡歷</title>
</head>

<body>
<table border="1" boder="1" cellpadding="0" cellspacing="0" align="center" width="600">
<capital><b><font size="5">個人簡歷</font></b></capital>
  <tr>
    <th height="30" width="80">專業</th>
    <th colspan="5"></th>
    <th rowspan="5" width="130"></th>
  </tr>
  <tr>
    <th height="30">學院</th>
    <th colspan="5"></th>
  </tr>
  <tr>
    <th height="30">姓名</th>
    <th width="80"></th>
    <th width="80">性別</th>
    <th width="100"></th>
    <th width="90">民族</th>
    <th width="70"></th>
  </tr>
  <tr>
    <th height="30">出生年月</th>
    <th></th>
    <th>籍貫</th>
    <th></th>
    <th>身高</th>
    <th></th>
  </tr>
  <tr>
    <th height="30">學歷</th>
    <th></th>
    <th>政治面貌</th>
    <th colspan="3"></th>
  </tr>
  <tr>
    <th height="30">就業意向</th>
    <th colspan="6"></th>
  </tr>
  <tr>
    <th height="30">興趣愛好</th>
    <th colspan="6"></th>
  </tr>
  <tr>
    <th height="30">個人說明</th>
    <th colspan="6"></th>
  </tr>
  <tr>
    <th height="30">家庭住址</th>
    <th colspan="6"></th>
  </tr>
  <tr>
    <th height="30">住宿地址</th>
    <th colspan="2"></th>
    <th>聯絡電話</th>
    <th></th>
    <th>手機</th>
    <th></th>
  </tr>
  <tr>
    <th height="30">任職狀況</th>
    <th colspan="6"></th>
  </tr>
  <tr>
    <th rowspan="10" height="300">本人簡歷</th>
    <th colspan="2" height="30">時間</th>
    <th colspan="2">學校</th>
    <th colspan="2">任職</th>
  </tr>
  <tr>
    <th colspan="2"></th>
    <th colspan="2"></th>
    <th colspan="2"></th>
  </tr>
  <tr>
    <th colspan="2"></th>
    <th colspan="2"></th>
    <th colspan="2"></th>
  </tr>
  <tr>
    <th colspan="2"></th>
    <th colspan="2"></th>
    <th colspan="2"></th>
  </tr>
  <tr>
      <th colspan="6"></th>
  </tr>
  <tr>
      <th colspan="6"></th>
  </tr>
  <tr>
      <th colspan="6"></th>
  </tr>
  <tr>
      <th colspan="6"></th>
  </tr>
  <tr>
      <th colspan="6"></th>
  </tr>
  <tr>
      <th colspan="6"></th>
  </tr>
</table>
</body>
</html>