NEW
Font size
WorksheetsHTML quiz
Total questions: 10
Worksheet time: 5mins
What is the correct HTML for adding a background color?
<body style="background-color:yellow;">
<background>yellow</background>
<body bg="yellow">
Who is making the Web standards?
Mozilla
The World Wide Web Consortium
Microsoft
Choose the correct HTML element for the largest heading:
h1
h6
heading
head
What is the correct HTML element for inserting a line break?
<br>
<break>
<lb>
What is the correct HTML for creating a hyperlink?
<a name="http://www.w3schools.com">W3Schools.com</a>
<a url="http://www.w3schools.com">W3Schools.com</a>
<a>http://www.w3schools.com</a>
<a href="http://www.w3schools.com">W3Schools</a>
How can you make a numbered list?
<ul>
<dl>
<ol>
<list>
What is the correct HTML for inserting an image?
<img href="image.gif" alt="MyImage">
<img src="image.gif" alt="MyImage">
<image src="image.gif" alt="MyImage">
<img alt="MyImage">image.gif</img>
What is the correct HTML for inserting a background image?
<background img="background.gif">
<body bg="background.gif">
<body style="background-image:url(background.gif)">
HTML comments start with <!-- and end with -->
True
False
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
src
longdesc
title
alt
