wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Web Design Creating Part 1

Total questions: 13

Worksheet time: 7mins

Name
Class
Date
1.

<title> My Web Page </title>


Which term describes the text that appears inside the angle brackets, such as <title>?

a)

Value

b)

Attribute

c)

Content

d)

Element

2.

Which element surrounds the HTML document content that will display in the browser window?

a)

<head> </head>

b)

<meta> </meta>

c)

<link> </link>

d)

<body> </body>

3.

Which table element is used to create a standard table cell?

a)

<table>

b)

<th>

c)

<tr>

d)

<td>

4.

Which code example correctly inserts an HTML comment into a Web page?

a)

< comment = "comment text " >

b)

< - - comment text - - / >

c)

< comment text />

d)

<! - - comment text - - >

5.

Which pair of HTML tags creates a numbered list?

a)

<ul> </ul>

b)

<list> </list>

c)

<li> </li>

d)

<ol> </ol>

6.

Which HTML heading tag should you use to indicate the least important heading on your page?

a)

<h2>

b)

<h1>

c)

<h5>

d)

<h6>

7.

Which HTML code will create a link that takes the visitor to an external Web site?

a)

<a http://www.ICT.com> Visit ICT </a>

b)

<a www.ICT.com> Visit ICT </a>

c)

<a href=ICT.com> Visit ICT </a>

d)

<a href=http://www.ICT.com> Visit ICT </a>

8.

Consider the following HTML code to create a hyperlink:


<a href=http://www.ICT.com> Visit ICT </a>


Which choice shows how this hyperlink will appear on the Web page to site visitors?

a)

<a http://www.ICT.com> Visit ICT </a>

b)

www.ICT.com Visit ICT

c)

www.ICT.com

d)

Visit ICT

9.

Consider the following HTML code:


<a href="http://www.ICT.com"><img _____="ICT_logo.jpg"


Which attribute is needed to complete this image hyperlink code?

a)

name

b)

pic

c)

href

d)

src

10.

Which HTML attribute should you add to the <img> tag to describe the image in case a site visitor cannot view the image on your Web page?

a)

name

b)

src

c)

href

d)

alt

11.

Nina is working with a team on a Web site that sells a wide variety of products.


She has completed a lengthy bit of HTML code and wants to explain to her co-workers that the HTML is for color coding products based on product type.


How would Nina insert her comments directly into the lines of code?

a)

<! - - for color coding based on type - - >

b)

< - - for color coding based on type - - / >

c)

< for color coding based on type />

d)

< comment = "for color coding based on type" >

12.

Juan is creating a Web site about his college experience.


He wants a page in his site to have tips on buying textbooks.


He wants the tips to appear as a bulleted list.


Which pair of HTML tags should he use?

a)

<ul> </ul>

b)

<bl> </bl>

c)

<li> </li>

d)

<ol> </ol>

13.

Which HTML tag is an example of an inline element?

a)

<p>

b)

<h1>

c)

<hr>

d)

<img>