NEW
Font size
WorksheetsCh. 3 Review - HTML
Total questions: 20
Worksheet time: 5mins
Which tag is used to link web pages to each other?
<link> </link>
<hyperlink> </hyperlink>
<a href = "url of site"> </a>
<body> </body>
In what section of the HTML document does the <style> element located if you are using embedded style?
title
header
nav
head
Which heading/subheading is the biggest font size?
<h1>
<h2>
<h3>
<h6>
<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
<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 herf="https://www.picturelocation"> Click me </a>
Is this coded correctly?
Yes
No, they wrote herf
<a href="https://www.picturelocation"> Click me </a>
Is this coded correctly?
Yes
No
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
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 scr="https://www.picturelocation.com">
Is a self closing tag, it does not need a /
True
False
The beginning tag works like the "on" switch and the ending tag works like the "off" switch.
True
False
The universally accepted name for the first page on a website is
home.html
index.html
first.html
Which of the following is the correct HTML syntax for inserting an image
<img>apple.jpg</img>
<img src="apple.jpg">
<image src="apple.jpg">
<img ="apple.jpg">
Which code below is correct for a hyperlink
<a>
"https://google.com"
Click Me
</a>
<a>Click Me>
"https://google.com"
</a>
<a herf="https://google.com">
Click Me
</a>
<a href="https://google.com">
Click Me
</a>
