Lecture
The <table> element serves as a container for the elements that define the content of a table. Any table consists of rows and cells, which are set using the <tr> and <td> tags. Inside <table> it is permitted to use the following elements: <caption>, <col>, <colgroup>, <tbody>, <td>, <tfoot>, <th>, <thead> and <tr>.
Tables with an invisible border were long used for laying out web pages, allowing a document to be split into modular blocks. This way of using tables took hold on many sites, until it was superseded by the more modern approach of layout using layers.
<table>
<tr>
<td>...</td>
</tr>
</table>
Universal attributes and events are also available for this tag.
Required.
Comments