WorksheetsHTML for H446
Total questions: 24
Worksheet time: 12mins
What does HTML stand for??
Home Training Metric Length
Homogenous Technical Support
Hype Tense Microsoft Level
Hyper Text Markup Language
Which of the tag is used to create a numbered list?
<L> </L>
<LI> </LI>
<li> </lo>
<ol> </ol>
Web pages start with which of the following tags?
<form>
<HTML>
<body>
<Title>
Choose the correct HTML element for the largest heading:
<head>
<h1>
<heading>
<h6>
HTML controls the _________ of a webpage.
feel
precision
structure
style
<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
Which of the following is a valid CSS rule?
h1 {
color: blue;
}
<h1> {
color: blue;
}
h1 {
color="blue";
}
h1 {
color=blue;
}
src attribute in an image tag means what?
Source of the image
Name of the image
Description of the image
Not used with image 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>
When working with color codes RGB stands for...
Green Red Purple
Red Great Blue
Red Green Blue
Blue Green Raspberry
In HTML, a class can be used to...
Define the document's title
Style multiple elements with a shared set of CSS rules
Create a hyperlink to another webpage
Embed multimedia content like videos and audio
Which CSS property can be used to change the font?
font-size
text-align
font-famiy
text-decoration
Which rule set would change the font size to 24?
font-size: 24
size: 24;
font-size: 24;
font size: 24;
What symbol should you use to target an id in css?
.
+
id
#
What symbol should you use to target a class name in css?
#
()
.
class
TRUE OR FALSE: HTML is used to style web pages.
True
False
Where should you put the link tag to connect your CSS and HTML file?
Between the <head> </head> in HTML
Between the <body> </body> in HTML
None of the above.
What is the <script> tag used for?
To add JavaScript
To add CSS
To add quotes and citations
To add HTML
JavaScript can be used to...
Check whether form fields have been completed.
Access a mySQL database
Define the structure of a web page
Set the default style of a web page.
What language is the following code?
alert('Hello world!');
(a)
