Font size
WorksheetsHTML Basics
Total questions: 14
Worksheet time: 8mins
Which character is used to indicate an end tag?
!
#
/
\
Which of the following contains a nested list
<ul>
<li>Apples</li>
<li>Cookies</li>
<li>Milk</li>
</ul>
<ul>
<li>Apples</li>
<li>
Cookies
<ul>
<li>Chocolate Chip</li>
<li>Peanut Butter</li>
</ul>
</li>
<li>Milk</li>
</ul>
You need a closing tag for an image without text
True
False
How can you make a list that has no particular order?
<ol> </ol>
<ul> </ul>
<ol> <li>
<li> </ul
What does HTML stand for??
Home Training Metric Length
Homogenous Technical Support
Hype Tense Microsoft Level
Hyper Text Markup Language
What defines the beginning and ending of the visible part of a webpage?
<head> main part of the document </body>
<body> main part of the document </html>
d) </body> main part of the document <html>
<body> main part of the document </body>
"/images/portrait.png" is an example of a(n) _______ url.
relative
absolute
What tag adds an image to the page?
<image>
<pic>
<img>
<p> is the opening tag for a _____________
page
paragraph
preorder
period
Which set contains all of the DEFAULT tags needed to create a webpage?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<main>
</main>
</body>
</html>
<html>
<head>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
</head>
</html>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
<!DOCTYPE html>
<html>
<head>
<title>
</title>
</head>
<body>
</body>
</html>
What is the correct syntax for defining a hyperlink in HTML?
<a href=”url”> Link text </a>
<a href=”url”> Link text <a>
<a=”url”> Link text <a>
<ref=”url”> Link text <a>
Where does the content of the <title> element show up in the browser?
At the top of the page.
In the browser tab.
It's metadata, so it doesn't show up.
At the bottom of the page.
The "href" of an anchor tag and the "src" of an image tag are both examples of an
(a)
Choose the correct HTML element for the largest heading:
<head>
<h1>
<heading>
<h6>
