Font size
WorksheetsHTML Basics
Total questions: 30
Worksheet time: 15mins
Which heading/subheading is the biggest font size?
<h1>
<h2>
<h3>
<h6>
Some tags you have to close with a /
Example: <h1> My Project </h1>
True
False
Which is not a heading/subheading?
<h6>
<h7>
<h1>
<h2>
<a href="https://www.picturelocation"> Click me </a>
Is this coded correctly?
Yes
No
<a herf="https://www.picturelocation"> Click me </a>
Is this coded correctly?
Yes
No, they wrote herf
<a href+"https://www.picturelocation"> Click me </a>
What is wrong with this code?
It should be
<a href=
It should be
<a href-
It should be
<a href/
<a href="https://www.picturelocation"> Click me <a>
What is missing?
Nothing, it is coded correctly.
The / in the closing tag
</a>
They wrote
herf
What color are links or hyperlinks?
red
blue
yellow
green
When a link or hyperlink is purple and not blue, it means...
That you have never ever clicked on it
You have already clicked on it
It is a virus
<br>
what is this called?
a line break
an anchor element
hyperlink
which code lets you enter or return to the next line and helps you stack text on top of other text?
<br>
<a href=
<img src
In this code <img src
What does img stand for?
iMac
image
amazing
emma
In this code <img src
What does src stand for?
sauce
source
saucey-sauce
saucer
<img src="https://www.imagelocation.com">
Is this coded correctly?
Yes
No
<img scr="https://www.picturelocation.com">
Is this coded correctly
Yes
No, src is written wrong
width="600" height="200"
This code can help resize an image when using
<img src
True
False
<img scr="https://www.picturelocation.com">
Is a self closing tag, it does not need a /
True
False
How can you find an image's address?
Right click and choose - open image in new tab
Right click and choose - copy image address
Right click and choose - save link as
What does HTML stand for?
Hyperlink Markup Language
Hypertext Markup Language
Hyperbolic Mark-it
Language
What does CSS handle?
The style and looks of a webpage
The text of a webpage
Which HTML tag is used to create a hyperlink?
<h1>
<a>
<img>
<br>
What attribute is required in the <img> tag to specify the image file?
alt
src
link
href
Which of the following is the correct way to close a heading tag?
<h1>
</h1>
<h1/>
<h1-
Which HTML tag is used to display an image on a webpage?
<img>
<image>
<src>
<picture>
Which HTML tag is used to create the largest heading?
<h3>
<h6>
<h4>
<h1>
Which HTML tag is used to create a line break?
<br>
<a>
<img>
<h1>
What attribute should you use in the <a> tag to open a link in a new tab?
src="_blank"
alt="newtab"
href="newtab"
target="_blank"
Which HTML tag is used to define the smallest heading?
<h6>
<h3>
<h1>
<h2>
Which HTML tag is used to create a paragraph?
<p>
<a>
<h1>
<img>
Which HTML tag is used to create a hyperlink that opens in a new tab?
<hyperlink href="url">
<link href="url">
<a href="url" target="_blank">
<a href="url">
