WorksheetsWeb Development Revision (Table)
Total questions: 10
Worksheet time: 3mins
Which HTML tag pair is used to specify table headings?
<td> </td>
<th> </th>
<head> </head>
<tr> </tr>
Which CSS property specifies the background color of a table?
background
bgcolor
background-color
table-color
Which of the following tags are related to tables
in HTML?
<table> <thead> <tbody>
<table> <row> <column>
<table> <tr> <td>
<table> <theader> <tfooter>
Which HTML element uses a border attribute to
display a table with a border?
<td>
<tr>
<table>
<tableborder>
Which of the following element is used to describe the table of contents?
<title>
<th>
<caption>
<td>
Which of the following attribute when used with <td> merges three cells horizontally?
colmerge=”3”
rowspan=”3”
rowmerge=”3”
colspan=”3”
Which HTML tag pair is used to begin and end a table row?
<td> </td>
<tbody> </tbody>
<table> </table>
<tr> </tr>
Which of the following is the intended use of tables on web pages?
configuring the layout of an entire page
organizing information
forming hyperlinks
configuring a resume
Which of the following CSS configures the td and th element selectors with a border?
td& th { border: 1px;}
td, th { border: 1px;}
td; th { border: 1px;}
td, th { border= 1px;}
The text displayed within a table (a) element is always centered and bold.
