Horje

How to create HTML <td> Tag

It is a simple HTML table, with two rows and four table cells.
index.html
Example: HTML
 <table>
  <tr>
    <td>Cell A</td>
    <td>Cell B</td>
  </tr>
  <tr>
    <td>Cell C</td>
    <td>Cell D</td>
  </tr>
</table> 

Output should be:

How to create HTML <td> Tag




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin