HTML table: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 9: Line 9:
=Overview=
=Overview=


 
The <pre><table></pre> 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 <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.
The <th> element defines a table header, the <tr> element defines a table row, and the <td> element defines a table cell.

Revision as of 16:48, 9 June 2016

External

Internal

Overview

The

<table>

tag defines an HTML table. An HTML table consists of the

element and one or more and element defines a table row, and the
,
elements. The element defines a table header, the
element defines a table cell.