wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

HTML Tags - h, p, img, a REVIEW

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

What is the purpose of an HTML Tag?

a)

It is the instruction that tells the computer what to do

b)

It is like a hashtag

c)

It is the text that you want to put on your website

d)

It adds a link to your website

2.

which answer CORRECTLY explains the difference between src and href

a)

they are the same

b)

we use src for image tags and href for a (link) tags

c)

we use src for a (link) tags and href for image tags

d)

we can use them both for images BUT can only use src for links

3.

TRUE or FALSE image tags (<img>) use an opening AND closing tag

a)

TRUE

b)

FALSE

4.

TRUE or FALSE link tags (<a>) use an opening AND closing tag

a)

TRUE

b)

FALSE

5.

Which answer choice tells the computer you are done with your paragraph:

a)

</h1>

b)

<p>

c)

</p>

d)

<h1>

6.

When you are adding a link to your site, where do you put the href?

a)

In-between the a tags like this: <a>href="madainn.com"</a>

b)

Inside the closing tag like this: <a> </a href="madainn.com">

c)

Wherever you want, it doesn't really matter

d)

Inside the opening tag like this: <a href="madainn.com"> </a>

7.

Which of these h tags will give us the BIGGEST heading?

a)

h2

b)

h3

c)

h4

d)

h5

e)

h6

8.

Which of these tags ONLY has an opening and NOT a closing tag?

a)

<a>

b)

<p>

c)

<h1>

d)

<img>

9.

Which answer choice shows a line of code that would correctly create a big heading that is a link to my website?

a)

<a href="madainn.com"> <h1> Click Here! </h1> </a>

b)

<a href="madainn.com"> Click Here! </a>

c)

<a> <h1> Click Here! </h1> </a href="madainn.com">

d)

<a> <h1href="madainn.com"> Click Here! </h1> </a>

10.

TRUE or FALSE When we create a link using an a tag we should also use heading or paragraph tags to tell the computer what we want the link to look like on the site

a)

TRUE, The computer ALWAYS needs very precise instructions

b)

FALSE, that's not necessary the computer can assume and make it look good anyway