What does this example demonstrate? How to create tables in an HTML document.
What does this example demonstrate? How to specify different table borders.
What tag are tables defined with? Tables are defined with the tag.
What is a table is divided into? What tag is used? A table is divided into rows (with the <tr> tag).
What are rows divided into? What tag is used and what do the letters stand for? Each row is divided
into data cells (with the <td> tag). TD stands for "table data."
What content can a data cell can? A <td> tag can contain text, links, images, lists, forms, other tables, etc.
What happens if you do not specify a border attribute? What do you need to do display a table with borders? If you do not specify a border attribute, the table will be displayed without borders. Sometimes this can be useful, but most of the time, we want the borders to show. To display a table with borders, specify the border attribute.
What tag is used to define headings in a table? Header information in a table are defined with the <th> tag.
No comments:
Post a Comment