HTML---------------示例代码(1)

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>童心少年</title>
  </head>
  <body>    
   
      <table border="1">
          <tr>
                <td>Row 1, cell 1</td>
                  <td>Row 1, cell 2</td>
          </tr>
      </table>
       <table border="1">
           <br>
           <table border ="1">
               <caption>这是标题</caption>
          <tr>
                <td>row 1, column 1</td>
                  <td>row 1, column 2</td>
          </tr>
               <tr>
                <td>row 2, column 1</td>
                  <td>row 2, column 2</td>
          </tr>
      </table>
      <br>
             <table border ="1" bordercolor="green" bgcolor="yellow">
                 <tr>
                     <th>Column 1</th>
                     <th>Column 2</th>
                     <th>Column 3</th>
                     </tr>
                   </table>
            
             <br>
             <table border ="1" bordercolor="green" background="/images/test.png">
                 <tr>
                     <th>Column 1</th>
                     <th>Column 2</th>
                     <th>Column 3</th>
                     </tr>
                   </table>
           
              <br>
             <table border ="1" cellpadding="green" cellspacing="yellow">
                 <tr>
                     <th>Name</th>
                     <th>Salary<th>
                     </tr>
                  <tr>
                     <th>其琛</th>
                     <th>5000<th>
                     </tr>
                  <tr>
                     <th>曼迪</th>
                     <th>7000<th>
                     </tr>
                   </table>
            <br>
           
    <table border="1">
        <tr>
            <th>Column 1</th>
            <th>Column 2</th>
            <th>Column 3</th>
        </tr>
        <tr>
            <td rowspan="2">
            <th>Row 1,Cell 1</th>
            <th>Row 1,Cell 2</th>
            <th>Row 1,Cell 3</th>
        </tr>
        <tr>
            
            <th>Row 2,Cell 2</th>
            <th>Row 1,Cell 3</th>
        </tr>
        <tr>
            <td colspan="3">
            <th>Row 3,Cell 1</th>
        </tr>
    </table>
<br>
           <table border="1" width="100%">
  <thead>
    <tr>
      <td colspan="4">This is the head of the table</td>
    </tr>
  </thead>
  <tfoot>
    <tr>
      <td colspan="4">This is the foot of the table</td>
    </tr>
  </tfoot>
  <tbody>
    <tr>
      <td>cell 1</td>
      <td>cell 2</td>
      <td>cell 3</td>
      <td>cell 4</td>
    </tr>
</tbody>
 </table>
  </body>
</html>

 

posted @ 2025-11-28 19:24  付书恒  阅读(0)  评论(0)    收藏  举报