HTML Tag »

Skip to content HTML / <th> HTML TagDisclosure: Your support helps keep the site running! We earn a referral fee for some of the services we recommend on this page. Learn moreWhat does <th> HTML Tag do?The <th> element is used to identify table cells that contain column header values rather than table data. A row of table heading values is created by nesting multiple <th> values in a parent <tr> element.Displayinline

Code Example

<p>A table of topographical features</p> <table> <tr> <th>Pointy</th> <th>Flat</th> <th>Wet</th> </tr> <tr> <td>Mountains</td> <td>Plains</td> <td>Rivers</td> </tr> <tr> <td>Rocky Outcroppings</td> <td>Mesas</td> <td>Lakes</td> </tr> </table>

A table of topographical features

PointyFlatWet
MountainsPlainsRivers
Rocky OutcroppingsMesasLakes

Adding Headings to Table Columns

Data in HTML tables is arranged vertically into columns. In most cases, you will want the first row of the table to be displayed as headings or labels for each table column. The correct way to do this is to use <th> elements rather than <td> elements for the content in the first row of the table. By default, browsers will center the contents of <th> elements and display them in a bold typeface. However, it’s also easy to style table headings independently of the rest of the table contents thanks to the use of this case-specific element for table headings.

Adam WoodAdam is a technical writer who specializes in developer documentation and tutorials.

Post navigation

What Does Td Colspan Have To Do With Tables In HTML?Applets

Search HTML.com

Search for:

Most Popular

  • <var> HTML Tag315 views
  • 10 Famous Hackers I’d Like to Date (and Why)68 views
  • What Is Doxing? (And Why Is It So Scary?): An Infographic50 views
  • Input Pattern: Use It To Add Basic Data Validation In HTML548 views
  • Using The HTML Tag To Create Inline Frames: Here's How38 views
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok

Từ khóa » Html Th Column