HTML table: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 11: Line 11:
The <table> tag defines an HTML table.
The <table> tag defines an HTML table.


An HTML table consists of the <table> element and one or more <th>, <tr> and <td> elements.
An HTML table consists of the &lt;table> element and one or more &lt;th>, &lt;tr> and &lt;td> elements.


The <th> element defines a table header, the <tr> element defines a table row, and the <td> element defines a table cell.
The &lt;th> element defines a table header, the &lt;tr> element defines a table row, and the &lt;td> element defines a table cell.

Revision as of 16:49, 9 June 2016

External

Internal

Overview

The <table> tag defines an HTML table.

An HTML table consists of the <table> element and one or more <th>, <tr> and <td> elements.

The <th> element defines a table header, the <tr> element defines a table row, and the <td> element defines a table cell.