< All the HTML Tags >

<table></table>

Video Coming Soon...

  • table

    Tag Type

    block

    Tag Category

    tables

    Defines a table

    Viewed

    1

    Examples

    1

Definition:

The HTML <table> tag is used to define a table for displaying tabular data, organizing information in rows and columns.

It typically contains nested elements like <tr> (table rows), <th> (table headers), and <td> (table data cells) to structure the content appropriately.

Using the `<table>` tag effectively enhances the organization and readability of data presentations.

Attributes:

border, Global attributes (e.g., class, id, style)

Accessibility:

Coming Soon…

Default table Example:

Using the <table> tag to create a table.
<table><tr><td>Cell</td></tr></table>

Default table Result:


Coming Soon…

Community Examples:

Coming Soon…
Coming Soon…