• Breaking News

    BASIC TABLE


     <!DOCTYPE html>
    <html>
    <style>
    table, th, td {
      border:1px solid black;
    }
    </style>
    <body>

    <h2>A basic HTML table</h2>

    <table style="width:100%">
      <tr>
        <th>Company</th>
        <th>Contact</th>
        <th>Country</th>
      </tr>
      <tr>
        <td>Alfreds Futterkiste</td>
        <td>Maria Anders</td>
        <td>Germany</td>
      </tr>
      <tr>
        <td>Centro comercial Moctezuma</td>
        <td>Francisco Chang</td>
        <td>Mexico</td>
      </tr>
    </table>

    <p>To undestand the example better, we have added borders to the table.</p>

    </body>
    </html>


    <!DOCTYPE html>
    <html>
    <style>
    table, th, td {
      border:1px solid black;
    }
    </style>
    <body>

    <h2>TR elements define table rows</h2>

    <table style="width:100%">
      <tr>
        <td>Emil</td>
        <td>Tobias</td>
        <td>Linus</td>
      </tr>
      <tr>
        <td>16</td>
        <td>14</td>
        <td>10</td>
      </tr>
    </table>

    <p>To undestand the example better, we have added borders to the table.</p>

    </body>
    </html>


    कोई टिप्पणी नहीं

    Post Top Ad

    Post Bottom Ad