True/False
Indicate whether the sentence or statement is true
or false.
|
|
1.
|
To
save bandwidth an image can be scaled down to a much smaller size called a thumbnail.
|
|
2.
|
The
following are all valid HTML file names: report2013.html , notes_May13.html , memberList.htm .
|
|
3.
|
The
following are all invalid HTML file names: scores, amount$2013.html, schedule*week.html ,
photo?shop.html , abc/123.html.
|
|
4.
|
On
Unix based systems such as on deepblue the file and folder names are case sensitive.
|
|
5.
|
The
HTML entity form for the < symbol is >
|
|
6.
|
The
HTML entity for the > symbol is >
|
|
7.
|
A
non-breaking space in HTML is shown in the browser by adding the HTML entity &space;
|
|
8.
|
Special characters such as < > & and can be shown in the browser using HTML entity codes such as
< > and " .
|
|
9.
|
The
<!DOCTYPE> declaration at the start of any HTML document tells the browser which
type of user is viewing the content.
|
|
10.
|
Major
HTML headings can be defined using the <h6>
element.
|
|
11.
|
The
HTML <article> element is a self-contained text such as a forum post, a magazine or
newspaper article, a blog entry, or a comment from a user.
|
|
12.
|
Use
the HTML 5 <navigate> element to represent a section of a page containing links to other
pages.
|
|
13.
|
The
HTML 5 <section> element represents a generic portion or a document (for example, a
chapter).
|
|
14.
|
The
HTML 5 <aside> element represents content that is related to the main
topic.
|
|
15.
|
The
HTML 5 <header> element contains mainly navigational links to other internet
resources for the page.
|
|
16.
|
The
HTML content <p>This is a story about a duck.</p> is shown in the
browser as a paragraph.
|
|
17.
|
The
HTML element <div> is similar to a paragraph but is usually reserved to visually contain
related text or images on the page.
|
|
18.
|
A
table element in HTML consists of a start tag <table>, one or more
<tr> elements each containing one or more <td> elements, then an end tag </table>.
|
|
19.
|
In an
HTML table the <th> elements (table header) are shown in bold by default.
|
|
20.
|
The
following table display was generated by this HTML:
<table
border=1>
<tr>
<td> row 1 cell 1. </td>
<td> row 1 cell 2 </td>
</tr>
<tr>
<td colspan=2>row 2 cell 1
</td>
</tr>
</table>
|