Creating Tables with HTML
Table Heading tags: <TH> </TH>
Header information in a table are defined with this tag.
<TD>
These elements are the data containers in the table.
Major browsers
Fill in the blank(s): "All _______ display the text in the <th> element as bold and centered.
Table Heading tags: <TH> </TH>
Rows can also be divided into headings with this tag.
Cell tags: <TD> </TD>
A row is divided into data cells with this tag.
Row tags: <TR> </TR>
A table is divided into rows with this tag.
Text; Images; Lists; Other tables(; etc.)
Some of the HTML elements that a <TD> element can contain
To present data in rows and columns; To organize information on your web page
Two uses of creating HTML tables
Table tags; Table heading tags; Row tags; Cell tags
What does the basic structure of an HTML table consist of?
Table tag: <TABLE> </TABLE>
What tag are tables defined with?