NEW
Font size
WorksheetsSCSV 1223 WEB 2019/2020-1(SECTION 08) - Quiz 1-HTML
Total questions: 20
Worksheet time: 20mins
1. What does HTML stand for?
Hyper Text Markup Language
Home Tool Markup Language
Hyperlinks Text Markup Language
Hyperlinks
HTML has a set of rules under which it operates. What is it called?
Syntax
Tags
Laws
Dialog
The content of your web page need to be placed between which set of tags?
<text></text>
<body></body>
<title></title>
<head></head>
What is the correct HTML for creating a hyperlink?
<a>http://www.utm.my</a>
<a href="http://www.utm.my">UTM</a>
<a url="http://www.utm.my">UTM</a>
<a scr="http://www.utm.my">UTM</a>
Choose the correct HTML tag for the largest heading
<h1>
<h2>
<h4>
<h6>
Which set of tags looks like this?
· Apples
· Grapes
· Oranges
<ul></ul>
<u></u>
<ol></ol>
<dl></dl>
What is the correct HTML for inserting an image?
<img src="image.gif" alt="MyImage">
<img url="MyImage">image.gif</img>
<img alt="MyImage">image.gif</img>
<image src="image.gif" alt="MyImage">
What is the correct HTML for making a drop-down list?
<input select>
<select>
<input type="list">
<input type="dropdown">
How to define a paragraph element in HTML?
<paragraph>
<p>
<pre>
<b>
What is the correct HTML tag for inserting a line break?
<break>
<lb>
<br>
<section>
What is the correct HTML for making a textbox input field?
<input type="textfield">
<input type="textbox">
<input type="text" name="">
<input type=" ">
Which is the correct tag to make a link that will send an email?
<a href="sendmail://david@firn.edu">
<a href="david@firn.edu">
<a href="mailto:david@firn.edu">
<a href="sendto:david@firn.edu">
The alt attribute is used in a(n) ________ element to provide an alternate ________ description for the image.
img, text.
a href, address.
title, text.
src, image size.
An HTML _________ helps you create an HTML file by inserting HTML codes for you as you work (like dreamweaver, notepad, text pad etc).
editor
builder
text
script
To creating a link in a document to a section in the same document, you would use an ________.
suspender
extra rollover
bookmark
anchor
Which is the correct HTML attribute, and CSS, to set the color of the paragraph to "blue".
<p style="color:blue;">This is a paragraph.</p>
<p "color=blue;">This is a paragraph.</p>
<p color="blue;">This is a paragraph.</p>
<p "blue;">This is a paragraph.</p>
How to add comment tags around the paragraph:
<!-- <p>This is a paragraph.</p> -->
<-- <p>This is a paragraph.</p> -->
/* <p>This is a paragraph.</p> */
// <p>This is a paragraph.</p>
Create a input field that can only contain numbers between 1 and 5.
<input type="number" min="1" max="5">
<input type="text" min="1" max="5">
<input type="number" value="1 to 5">
<input type=text" value="1 to 5">
Which is the correct HTML attribute to make the element span two columns.
<th colspan="2">Name</th>
<th colspan=" ">Name</th>
<th rowspan=" ">Name</th>
<th rowspan="2">Name</th>
The CSS list-style-type property is used to define the style of the list item marker:
TRUE
FALSE
