Skip to main content

HTML Sample Program for Table tag and th, tr, td tags for freshers

HTML table is effective way to design website but not now. Because table based coding takes more memory comapred with div based coding. Any way table is more important for Designers. It is More useful for sometimes.

HTML Example for Table tag:

<html>
<head>
<title>
 Welcome to Fresherstarget Learning
</title>
</head>
<body>
  <table>
    <tr>
      <th>Reg No</th>
      <th>Name</th>
    </tr>
    <tr>
      <td>123</td>
      <td>Raj Kumar</td>
    </tr>
  </table>
</body>
</html>

The above program is the best example for the table tag.
I hope that will helpfull for you.
Thanks, Freshers Blog