Font size
WorksheetsRecap HTML
Total questions: 21
Worksheet time: 11mins
Reg No and Name
(a)
What does HTML stand for?
Hyper Text Markup Language
Hyperlinks and Text Markup Language
Home Tool Markup Language
Choose the correct HTML element for the largest heading:
<h1>
<heading>
<head>
<h6>
What is the correct HTML element for inserting a line break?
<br>
<break>
<lb>
<h6>
What is the correct HTML for adding a background color?
<body style="background-color:yellow;">
<body bg="yellow">
<background>yellow</background>
Choose the correct HTML element to define important text
<strong>
<important>
<b>
<i>
What is the correct HTML for creating a hyperlink?
<a href="http://www.w3schools.com">W3Schools</a>
<a name="http://www.w3schools.com">W3Schools.com</a>
<a url="http://www.w3schools.com">W3Schools.com</a>
<a>http://www.w3schools.com</a>
Which character is used to indicate an end tag?
/
*
<
^
How can you open a link in a new tab/browser window?
<a href="url" target="_blank">
<a href="url" target="new">
<a href="url" new>
Which of these elements are all <table> elements?
<table><tr><td>
<table><tr><tt>
<thead><body><tr>
<table><head><tfoot>
How can you make a numbered list?
<ol>
<dl>
<ul>
<list>
How can you make a bulleted list?
<ol>
<dl>
<ul>
<list>
What is the correct HTML for making a checkbox?
<input type="checkbox">
<checkbox>
<input type="check">
<check>
What is the correct HTML for making a text input field?
<input type="text">
<input type="textfield">
<textfield>
<textinput type="text">
What is the correct HTML for making a drop-down list?
<input type="dropdown">
<select>
<input type="list">
<list>
What is the correct HTML for inserting an image?
<img src="image.gif" alt="MyImage">
<img alt="MyImage">image.gif</img>
<img href="image.gif" alt="MyImage">
<image src="image.gif" alt="MyImage">
What is the correct HTML for inserting a background image?
<body bg="background.gif">
<background img="background.gif">
<body style="background-image:url(background.gif)">
HTML comments start with <!-- and end with -->
True
False
Which HTML element defines the title of a document?
<title>
<head>
<meta>
Which doctype is correct for HTML5?
<!DOCTYPE html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0//EN"
<!DOCTYPE HTML5>
"http://www.w3.org/TR/html5/strict.dtd">
Which HTML element is used to specify a header for a document or section?
<head>
<top>
<section>
<header>
