NEW
Font size
WorksheetsHTML
Total questions: 28
Worksheet time: 9mins
What does HTML stand for?
Home Tool Markup Language
Hyper Text Markup Language
Hyperlinks and Text Markup Language
Who is making the Web standards?
Mozilla
Microsoft
The World Wide Web Consortium
Choose the correct HTML element for the largest heading:
<head>
<h1>
<heading>
<h6>
What is the correct HTML element for inserting a line break?
<lb>
<break>
<br>
What is the correct HTML for adding a background color?
<body bg="yellow">
<body style="background-color:yellow;">
<background>yellow</background>
Choose the correct HTML element to define important text!
<important>
<i>
<b>
<strong>
Choose the correct HTML element to define emphasized text!
<italic>
<i>
<em>
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="new">
<a href="url" target="_blank">
<a href="url" new>
Which of these elements are all <table> elements?
<table><tr><tt>
<table><tr><td>
<thead><body><tr>
<table><head><tfoot>
Inline elements are normally displayed without starting a new line.
true
false
How can you make a numbered list?
<list>
<ol>
<ul>
<dl>
How can you make a bulleted list?
<dl>
<ol>
<ul>
<list>
What is the correct HTML for making a checkbox?
<input type="check">
<check>
<checkbox>
<input type="checkbox">
What is the correct HTML for making a text input field?
<input type="text">
<textfield>
<textinput type="text">
<input type="textfield">
What is the correct HTML for making a drop-down list?
<select>
<input type="list">
<list>
<input type="dropdown">
What is the correct HTML for making a text area?
<textarea>
<input type="textarea">
<input type="textbox">
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>
HTML comments start with <!-- and end with -->
true
false
Block elements are normally displayed without starting a new line.
true
false
Which HTML element defines the title of a document?
<title>
<head>
<meta>
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
alt
longdesc
src
title
Which doctype is correct for HTML5?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0//EN" "http://www.w3.org/TR/html5/strict.dtd">
<!DOCTYPE HTML5>
<!DOCTYPE html>
Which HTML element is used to specify a footer for a document or section?
<bottom>
<section>
<footer>
Which HTML element defines navigation links?
<nav>
<navigation>
<navigate>
In HTML, what does the <aside> element define?
A navigation list to be shown at the left side of the page
The ASCII character-set; to send information between computers on the Internet
Content aside from the page content
Which HTML element is used to specify a header for a document or section?
<section>
<header>
<head>
<top>
Which of the following is NOT a semantic element?
<aside>
<div>
<main>
<article>
