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