NEW
Font size
WorksheetsHTML Tags - h, p, img, a REVIEW
Total questions: 10
Worksheet time: 5mins
What is the purpose of an HTML Tag?
It is the instruction that tells the computer what to do
It is like a hashtag
It is the text that you want to put on your website
It adds a link to your website
which answer CORRECTLY explains the difference between src and href
they are the same
we use src for image tags and href for a (link) tags
we use src for a (link) tags and href for image tags
we can use them both for images BUT can only use src for links
TRUE or FALSE image tags (<img>) use an opening AND closing tag
TRUE
FALSE
TRUE or FALSE link tags (<a>) use an opening AND closing tag
TRUE
FALSE
Which answer choice tells the computer you are done with your paragraph:
</h1>
<p>
</p>
<h1>
When you are adding a link to your site, where do you put the href?
In-between the a tags like this: <a>href="madainn.com"</a>
Inside the closing tag like this: <a> </a href="madainn.com">
Wherever you want, it doesn't really matter
Inside the opening tag like this: <a href="madainn.com"> </a>
Which of these h tags will give us the BIGGEST heading?
h2
h3
h4
h5
h6
Which of these tags ONLY has an opening and NOT a closing tag?
<a>
<p>
<h1>
<img>
Which answer choice shows a line of code that would correctly create a big heading that is a link to my website?
<a href="madainn.com"> <h1> Click Here! </h1> </a>
<a href="madainn.com"> Click Here! </a>
<a> <h1> Click Here! </h1> </a href="madainn.com">
<a> <h1href="madainn.com"> Click Here! </h1> </a>
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
TRUE, The computer ALWAYS needs very precise instructions
FALSE, that's not necessary the computer can assume and make it look good anyway
