NEW
Font size
WorksheetsHTML quiz
Total questions: 19
Worksheet time: 10mins
What does HTML stand for?
HTML Tool Markup Language
Hyper Text Markup Language
Hyperlinks and Text Markup Language
Who is making the Web standards?
Mozilla
The World Wide Web Consortium
Microsoft
Choose the correct HTML element for the largest heading:
<h6>
<head>
<heading>
<h1>
What is the correct HTML element for inserting a line break?
<lb>
<break>
<br>
What is the correct HTML for adding a background color?
<background>red </background>
<body bgcolor = ”yellow” ></body>
<body bg = ”yellow”>
Choose the correct HTML element to define italic text
<b>
<i>
<u>
<important>
What is the correct HTML for creating a hyperlink?
<a href="www.wikipedia.com">Wikipedia
</a>
<a url="www.wikipedia.com">Wikipedia</a>
<a name="www.wikipedia.com">Wiki<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="_blanck">
<a href="url" target="blanck">
<a href="url" target="_new">
Which of these elements are all <table> elements?
<table><td><tr>
<table><dt><dr>
<table><tr><td>
Inline elements are normally displayed without starting a new line.
True
False
How can you make a numbered list?
<ol>
<ul>
<list>
<dl>
How can you make a bulleted list?
<dl>
<ol>
<ul>
<list>
What is the correct HTML for making a checkbox?
<checkbox>
<input type=”check”>
<check>
<input type=”checkbox”>
What is the correct HTML for making a drop-down list?
<list>
<select>
<input type="list">
<input type="dropdown"
>
What is the correct HTML for making a text area?
<input type=
"textarea">
<textarea>
<input type="textbox">
What is the correct HTML for inserting an image?
<img alt="Myimage" >image.gif</img>
<img src="image.gif" alt="MyImage">
<img href="myimage.gif" alt=”MyImage”>
An <iframe> is used to display a web page within a web page.
False
True
Which HTML element defines the title of a document?
<head>
<meta>
<title>
