NEW
Font size
WorksheetsWeb Design Creating Part 1
Total questions: 13
Worksheet time: 7mins
<title> My Web Page </title>
Which term describes the text that appears inside the angle brackets, such as <title>?
Value
Attribute
Content
Element
Which element surrounds the HTML document content that will display in the browser window?
<head> </head>
<meta> </meta>
<link> </link>
<body> </body>
Which table element is used to create a standard table cell?
<table>
<th>
<tr>
<td>
Which code example correctly inserts an HTML comment into a Web page?
< comment = "comment text " >
< - - comment text - - / >
< comment text />
<! - - comment text - - >
Which pair of HTML tags creates a numbered list?
<ul> </ul>
<list> </list>
<li> </li>
<ol> </ol>
Which HTML heading tag should you use to indicate the least important heading on your page?
<h2>
<h1>
<h5>
<h6>
Which HTML code will create a link that takes the visitor to an external Web site?
<a http://www.ICT.com> Visit ICT </a>
<a www.ICT.com> Visit ICT </a>
<a href=ICT.com> Visit ICT </a>
<a href=http://www.ICT.com> Visit ICT </a>
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 http://www.ICT.com> Visit ICT </a>
www.ICT.com Visit ICT
www.ICT.com
Visit ICT
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?
name
pic
href
src
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?
name
src
href
alt
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?
<! - - for color coding based on type - - >
< - - for color coding based on type - - / >
< for color coding based on type />
< comment = "for color coding based on type" >
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?
<ul> </ul>
<bl> </bl>
<li> </li>
<ol> </ol>
Which HTML tag is an example of an inline element?
<p>
<h1>
<hr>
<img>
