HTML Table Headers

Header cells label rows or columns.

#Jobseeker

Find matching jobs & Auto apply with AI

Hyring
Jobseeker using Hyring to search, apply, and prepare with AI

Use <th> instead of <td> for header cells. They are bold and centered by default, and assistive tech announces them as headers.

A header row

<!DOCTYPE html>
<html>
<body>

<table>
  <tr>
    <th>Name</th>
    <th>Role</th>
  </tr>
  <tr>
    <td>Asha</td>
    <td>Designer</td>
  </tr>
</table>

</body>
</html>