Horje

How to create table headers

Table Headers
  1. Horizontal headers
  2. Vertical headers
index.html
Example: HTML
 <table>
  <tr>
    <th>Name</th>
    <th>Email</th>
    <th>Phone</th>
  </tr>
  <tr>
    <td>John Doe</td>
    <td>[email protected]</td>
    <td>123-45-678</td>
  </tr>
</table> 

Output should be:

How to create table headers




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