NEW
Font size
WorksheetsHTML basic
Total questions: 20
Worksheet time: 10mins
HTML controls the _________ of a webpage.
feel
precision
structure
style
Which character is used to indicate an end tag?
!
#
/
\
What tag should every HTML document start with?
<head>
<!DOCTYPE>
<html>
<DOCTYPE>
<h1> is an example of a _______.
Headline Tag
Paragraph Tag
filename
Choose the correct HTML element for the largest heading:
<head>
<h1>
<heading>
<h6>
What defines the beginning and ending of the visible part of a webpage?
<html> main part of the document </html>
<body> main part of the document </html>
</body> main part of the document <html>
<body> main part of the document </body>
Which is the proper way to write an h1 tag
<h1>Hello</h1>
<h1>"Hello
{h1}Hello{/h1}
<h1>Hello<h1>
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 list tag would you use for an ordered list
<h1></h1>
<ol></ol>
<ul></ul>
<a></a>
You need a closing tag for an image without text
True
False
What will be the output for the following code?
<html>
<body>
<i> I am bold </i>
</body>
</html>
I am bold
I am bold
<I am Bold>
<I am Bold>
What is the value in the below code?
<p align="center"> this is a simple paragraph only </p>
<p>
align
"center"
</p>
What are the attributes in the code below?
<img src="images/1.jpg" height="300px" width="500px">
<img>
src, height, width
"images/1.jpg", "300px", "500px"
none
What attribute can we use to set the background for <body>?
bgcolor
background
bgcolor and background
color
What's wrong with the code?
<!DOCTYPE html>
<html>
<head>
<title> Shopping list <title>
</head>
<body>
<h1 align="center">My shopping list</h1>
</html>
the code is correct
the tags <title> should be between <body></body> tags
tag <title> is not closed
What is the font size in this code: <p style=“color:blue; background-color:yellow;
font-size:60px”>Hello</p>
20pixles
40pixels
50pixels
60pixels
When working with color codes RGB stands for...
Green Red Purple
Red Great Blue
Red Green Blue
Blue Green Raspberry
