wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

IP-Unit 1-Quiz

Total questions: 12

Worksheet time: 5mins

Name
Class
Date
1.

What is the correct HTML for creating a hyperlink?

a)

<a>http://www.mitujjain.ac.in</a>

b)

<a url="http://www.mitujjain.ac.in">MITUJJAIN</a>

c)

<a name="http://www.mitujjain.ac.in">MITUJJAIN</a>

d)

<a href="http://www.mitujjain.ac.in">MITUJJAIN</a>

2.

Choose the correct HTML element for the largest heading:

a)

<h6>

b)

<head>

c)

<heading>

d)

<h1>

3.

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

a)

<br>

b)

<break>

c)

<lb>

d)

<brk>

4.

Choose the correct HTML element to define emphasized text

a)

<italic>

b)

<i>

c)

<em>

d)

<font>

5.

HTML comments start with <!-- and end with -->

a)

False

b)

True

6.

<a> is use to

a)

Define the area

b)

Define the link destination

c)

Define an article tag

d)

Define an HTML link

7.

What is the correct HTML for making a checkbox?

a)

<checkbox>

b)

<input type="check" />

c)

<input type="checkbox" />

d)

<check>

8.

HTML tag for inserting an image

a)

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

b)

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

c)

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

d)

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

9.

How will you make all paragraph elements 'RED' in color ?

a)

.p.all {color: red;}

b)

.* {color: #990000;}

c)

all.p {color: #998877;}

d)

p {color: red;}

10.

The elements <DIV> and <SPAN> have the following characteristics

a)

Element <DIV> inherits properties defined for <SPAN> in a stylesheet

b)

Elements <SPAN> and <DIV> define content to be inline or block-level

c)

<DIV> and <SPAN> are used as alternatives for the element <P>

d)

<DIV> is used inside element <P>.

11.

Select the correct among the following for linking an external style sheet.

a)

<link rel=“stylesheet” type=“text/css” href=“style.css”>

b)

<style rel=“stylesheet” type=“text/css” href=“style.css”>

c)

<link>stylesheet

d)

<link href=“style.css”>stylesheet

12.
What is the proper code to insert an image named "frog.jpg"?
a)
<img src="frog" width="104" height="142">
b)
<img="frog.jpg" width="104" height="142">
c)
<img src="frog.jpg" width="104" height="142">
d)
<img ="frog" width="104" height"142">