Skip to content

Header, Data rows, The Caption Tag in table

HTML tables are used to organize and display data in a structured format. They consist of various elements, including headers, data rows, and captions. Each of these elements serves a specific purpose in making the table clear, organized, and accessible.

Header (<th>)

The header cells in a table are defined using the <th> element. These cells typically appear at the top of each column or at the beginning of each row, and they are usually styled differently (bold and centered by default) to distinguish them from the data cells.

Example of Table Headers

<!DOCTYPE html>

<html lang=”en”>

<head>

    <meta charset=”UTF-8″>

    <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>

    <title>Table with Headers</title>

</head>

<body>

    <h1>Table with Headers</h1>

    <table border=”1″>

        <tr>

            <th>Header 1</th>

            <th>Header 2</th>

            <th>Header 3</th>

        </tr>

        <tr>

            <td>Data 1</td>

            <td>Data 2</td>

            <td>Data 3</td>

        </tr>

    </table>

</body>

</html>

Attributes for <th>

  • scope: Defines the scope of the header cell. It can take values like col (applies to the column), row (applies to the row), colgroup (applies to a group of columns), or rowgroup (applies to a group of rows).

<th scope=”col”>Header 1</th>

<th scope=”row”>Row Header</th>

Data Rows (<tr> and <td>)

Data rows in a table are defined using the <tr> element, and each data cell within a row is defined using the <td> element. These elements contain the actual data of the table.

Example of Data Rows

<!DOCTYPE html>

<html lang=”en”>

<head>

    <meta charset=”UTF-8″>

    <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>

    <title>Table with Data Rows</title>

</head>

<body>

    <h1>Table with Data Rows</h1>

    <table border=”1″>

        <tr>

            <th>Header 1</th>

            <th>Header 2</th>

            <th>Header 3</th>

        </tr>

        <tr>

            <td>Data 1</td>

            <td>Data 2</td>

            <td>Data 3</td>

        </tr>

        <tr>

            <td>Data 4</td>

            <td>Data 5</td>

            <td>Data 6</td>

        </tr>

    </table>

</body>

</html>

The Caption Tag (<caption>)

The <caption> element is used to provide a title or a description for the table. It helps users understand the context or purpose of the table. By default, the caption is placed at the top of the table.

Example of Table with Caption

<!DOCTYPE html>

<html lang=”en”>

<head>

    <meta charset=”UTF-8″>

    <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>

    <title>Table with Caption</title>

</head>

<body>

    <h1>Table with Caption</h1>

    <table border=”1″>

        <caption>Monthly Sales Report</caption>

        <tr>

            <th>Month</th>

            <th>Sales</th>

            <th>Revenue</th>

        </tr>

        <tr>

            <td>January</td>

            <td>100</td>

            <td>$1000</td>

        </tr>

        <tr>

            <td>February</td>

            <td>120</td>

            <td>$1200</td>

        </tr>

    </table>

</body>

</html>

Summary

  1. Headers (<th>): Used for header cells in a table. They typically appear at the top of columns or at the beginning of rows and are often styled differently to distinguish them from data cells. The scope attribute can be used to define the relationship between headers and data cells.
  2. Data Rows (<tr> and <td>): The <tr> element defines a row in the table, and the <td> element defines a cell containing data. Multiple <tr> elements are used to create multiple rows of data.
  3. Caption (<caption>): Provides a title or description for the table, enhancing the table’s accessibility and providing context to users. The caption is typically displayed at the top of the table by default.

Using these elements correctly ensures that tables are not only visually appealing and well-organized but also accessible and meaningful to all users, including those using assistive technologies.