What element will create a table?
(table)
What is the general purpose of the (thead), (tfoot), and (tbody) elements?
they add more semantic meaning to a table, making them easier to navigate for screen readers, search engines, and future web browsing devices
Where should the (tfoot) element be placed?
immediately after the (thead) element inside of the (table) element
What element will create a table header cell?
(th)
What element will create a table row?
(tr)
What attribute will allow a table cell to space across more than one column?
colspan
What attribute will give an outline around the table?
(table border=”1”)(/table)