wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

SCSV 1223 WEB 2019/2020-1(SECTION 08) - Quiz 1-HTML

Total questions: 20

Worksheet time: 20mins

Name
Class
Date
1.

1. What does HTML stand for?

a)

Hyper Text Markup Language

b)

Home Tool Markup Language

c)

Hyperlinks Text Markup Language

d)

Hyperlinks

2.

HTML has a set of rules under which it operates. What is it called?

a)

Syntax

b)

Tags

c)

Laws

d)

Dialog

3.

The content of your web page need to be placed between which set of tags?

a)

<text></text>

b)

<body></body>

c)

<title></title>

d)

<head></head>

4.

What is the correct HTML for creating a hyperlink?

a)

<a>http://www.utm.my</a>

b)

<a href="http://www.utm.my">UTM</a>

c)

<a url="http://www.utm.my">UTM</a>

d)

<a scr="http://www.utm.my">UTM</a>

5.

Choose the correct HTML tag for the largest heading

a)

<h1>

b)

<h2>

c)

<h4>

d)

<h6>

6.

Which set of tags looks like this?


· Apples

· Grapes

· Oranges

a)

<ul></ul>

b)

<u></u>

c)

<ol></ol>

d)

<dl></dl>

7.

What is the correct HTML for inserting an image?

a)

<img src="image.gif" alt="MyImage">

b)

<img url="MyImage">image.gif</img>

c)

<img alt="MyImage">image.gif</img>

d)

<image src="image.gif" alt="MyImage">

8.

What is the correct HTML for making a drop-down list?

a)

<input select>

b)

<select>

c)

<input type="list">

d)

<input type="dropdown">

9.

How to define a paragraph element in HTML?

a)

<paragraph>

b)

<p>

c)

<pre>

d)

<b>

10.

What is the correct HTML tag for inserting a line break?

a)

<break>

b)

<lb>

c)

<br>

d)

<section>

11.

What is the correct HTML for making a textbox input field?

a)

<input type="textfield">

b)

<input type="textbox">

c)

<input type="text" name="">

d)

<input type=" ">

12.

Which is the correct tag to make a link that will send an email?

a)

<a href="sendmail://david@firn.edu">

b)

<a href="david@firn.edu">

c)

<a href="mailto:david@firn.edu">

d)

<a href="sendto:david@firn.edu">

13.

The alt attribute is used in a(n) ________ element to provide an alternate ________ description for the image.

a)

img, text.

b)

a href, address.

c)

title, text.

d)

src, image size.

14.

An HTML _________ helps you create an HTML file by inserting HTML codes for you as you work (like dreamweaver, notepad, text pad etc).

a)

editor

b)

builder

c)

text

d)

script

15.

To creating a link in a document to a section in the same document, you would use an ________.

a)

suspender

b)

extra rollover

c)

bookmark

d)

anchor

16.

Which is the correct HTML attribute, and CSS, to set the color of the paragraph to "blue".

a)

<p style="color:blue;">This is a paragraph.</p>

b)

<p "color=blue;">This is a paragraph.</p>

c)

<p color="blue;">This is a paragraph.</p>

d)

<p "blue;">This is a paragraph.</p>

17.

How to add comment tags around the paragraph:

a)

<!-- <p>This is a paragraph.</p> -->

b)

<-- <p>This is a paragraph.</p> -->

c)

/* <p>This is a paragraph.</p> */

d)

// <p>This is a paragraph.</p>

18.

Create a input field that can only contain numbers between 1 and 5.

a)

<input type="number" min="1" max="5">

b)

<input type="text" min="1" max="5">

c)

<input type="number" value="1 to 5">

d)

<input type=text" value="1 to 5">

19.

Which is the correct HTML attribute to make the element span two columns.

a)

<th colspan="2">Name</th>

b)

<th colspan=" ">Name</th>

c)

<th rowspan=" ">Name</th>

d)

<th rowspan="2">Name</th>

20.

The CSS list-style-type property is used to define the style of the list item marker:

a)

TRUE

b)

FALSE