Font size
WorksheetsHtml_Tables
Total questions: 17
Worksheet time: 9mins
Which is the tag to create a row ?
<table>
<tr>
<td>
None of these
Which things can be added to a table ?
Images
another table
hyperlinks
All of the above
Which attribute will add a heading to a table?
Head
Title
h1
caption
Which is correct?
<table> <td><tr>1</tr><tr>2</tr></td> </table>
<table><tr></tr><td>1</td><td>2</td></table>
<table><tr><td>1</td><td>2</td></tr></table>
All of the these
Which is the tag to add table column heading?
td
tr
table
th
th
one cell in a row of headers
one data cell
one row of headers
one column of headers
tr
one column on the right
one cell in a table
one row of anything
one column of anything
td
one cell in a header
one column of a row
one row of a column
one data cell in a row
caption
can be set only for header rows
can be set for each row
will appear at the top of table
will appear at the bottom of a table
td and th
can appear only in rows
cannot be used in rows
can be used outside of rows
can be used outside of columns
The closing table tag is
</close>
</caption>
</table>
<table>
<a href = “ “ > … <a/>
What are the start tag and end tag codes for the table header?
<table></table>
<th></th>
<header></header>
<th/>
What are the start tag and end tag codes for the table data?
<td></td>
<data></data>
<table></table>
<td/>
What are the start tag and end tag codes for the table row?
<row></row>
<table></table>
<tr></tr>
<tablerow></tablerow>
True or False?
A table border will always appear whenever a table is being created.
True
False
