TABLE

task
 avatar
user_9408108
html
6 months ago
942 B
2
Indexable
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Table Task</title>
  </head>
  <body>

    
    <header>
      <h1 align="center">Table</h1>
    </header>

    <main>
     
      <table border="2" cellpadding="5" height="50" width="400" align="center" bgcolor="lightgrey">
        <tr align="center">
          <td>Column 1</td>
          <td>Column 2</td>
          <td>Column 3</td>
        </tr>
        <tr align="center">
            <td rowspan="2">Row 1 Cell 1</td>
            <td>Row 1 Cell 2</td>
            <td>Row 1 Cell 3</td>
          </tr>
          <tr align="center">
            <td>Row 2 Cell 2</td>
            <td>Row 2 Cell 3</td>
          </tr>
          <tr>
            <td colspan="3">Row 3 Cell 1</td>
          </tr>
      </table>
    </main>
  </body>
</html>
Editor is loading...
Leave a Comment