True/False
Indicate whether the sentence or statement is true
or false.
|
|
1.
|
The
following table display was generated by this HTML:
<table
border=1>
<tr>
<td rowspan=2> row 1 cell 1
</td>
<td>
row 1 cell 2
</td>
</tr>
<tr>
<td> row 2 cell 2 </td>
</tr>
</table>
|
|
2.
|
A
table element can be used to structure HTML content on the page.
|
|
3.
|
In an
HTML table the rows can have different numbers of cells (columns).
|
|
4.
|
If
you need to display a collection of items in HTML prefixed by a bullet or some other symbol, use an
ordered list.
|
|
5.
|
An
ordered list uses the <ol> </ol> tags with
<li> </li> elements within them.
|
|
6.
|
This
HTML is rendered as follows:
<ol>
<li> apple
</li>
<li> banana
</li>
<li> cherry
</li>
</ol>
iapple
ibanana
icherry
|
|
7.
|
A
definition list in HTML starts with the <def> start
tag.
|
|
8.
|
A
definition list in HTML consists of an outer <dl> </dl> element and one
or more sets of <dt> </dt> <dd>
</dd> elements within.
|
|
9.
|
Within an HTML definition list the <dt> element defines
the definition task.
|
|
10.
|
The
<dd> element in an HTML definition list indicates the definition
direction.
|
|
11.
|
This
HTML will be rendered as follows:
<dl>
<dt>CIO</dt>
<dd>Chief Information Officer, the person
responsible for directing information technology policies within an organization</dd>
<dt>hacker</dt>
<dd>Highly skilled computer
programmer</dd>
</dl>
|
|
12.
|
The
src attribute for the <img> element defines
the location of the image file.
|
|
13.
|
It is
a good idea to specify an alt attribute for images as a text description in case the image source
is not displayable.
|
|
14.
|
In
<img> elements it is necessary to define the attribute src first before the alt attribute so that the image will display correctly.
|
|
15.
|
In
HTML an imagemap provides multiple hyperlink spots of any shape and size within a
graphic.
|
|
16.
|
An
imagemap can be used with a geographic map picture or a building blueprint to provide hot spots which
link to different HTML pages.
|
|
17.
|
An
<object> element in HTML can define a Shockwave file, a Java applet, or other
types of non-HTML content.
|
|
18.
|
As a
web developer it is generally a good idea to test your HTML page display in every popular browser and
their versions.
|
|
19.
|
Accessibility is the term used to describe the degree to which the web page content
can be accessed and viewed by everyone, not just those with perfect vision and functioning personal
motor skills.
|
|
20.
|
The
US government has published federal guidelines for providing web accessibility to web
pages.
|