Font size
WorksheetsHTML Basics
Total questions: 15
Worksheet time: 8mins
What does HTML stand for??
Home Training Metric Length
Homogenous Technical Support
Hype Tense Microsoft Level
Hyper Text Markup Language
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>
Choose the correct HTML element for the largest heading:
<head>
<h1>
<heading>
<h6>
<p> is the opening tag for a _____________
page
paragraph
preorder
period
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>
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>
Which character is used to indicate an end tag?
!
#
/
\
How can you make a list that has no particular order?
<ol> </ol>
<ul> </ul>
<ol> <li>
<li> </ul
You need a closing tag for an image without text
True
False
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>
The "href" of an anchor tag and the "src" of an image tag are both examples of an
(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.
What tag adds an image to the page?
<image>
<pic>
<img>
Which of the following are inline elements?
<span>
<p>
<h1>
<em>
<div>
"/images/portrait.png" is an example of a(n) _______ url.
relative
absolute
