NEW
Font size
WorksheetsHTML QUIZ
Total questions: 25
Worksheet time: 13mins
What does HTML stand for?
Hyper Text Markup Language
High Transfer Machine Language
Hyperlink and Text Management Language
None of these
Which tag is used to insert a video?
<vid>
<video>
<movie>
<media>
What is the use of the <span> tag?
To group inline elements
To insert a paragraph
To make text bold
To Un-group inline elements
Which attribute is used to specify the image source?
alt
href
src
link
The <hr> tag is used for:
used for creating a horizontal line.
used for creating a text link.
used for adding a vertical line.
used for inserting an image.
What is the use of the <title> tag?
To display the main heading
To set the title of the web page
To make text bold
To add a footer
HTML comments start with:
//
/*
<!--
#
The <body> tag is used to:
Display metadata
Display the main content of the page
Create a header
Define CSS styles
What is the correct HTML for adding a background color?
<body style="background-color:yellow;">
<body bg="yellow">
<background>yellow</background>
<body bg:yellow >
The <head> tag contains:
Body
Title, metadata, and links to scripts/styles
Paragraphs
Main content
What does the <link> tag do?
Adds an image
Defines metadata
Creates a hyperlink
Links external files like CSS
Who is making the Web standards?
The World Wide Web Consortium
Microsoft
Mozilla
Which tag is used to display a checkbox?
<input checkbox>
<checkbox>
<input type="checkbox">
<option>
The default alignment of text in HTML is:
Right
Center
Left
Justify
Choose the correct HTML element to define important text?
<important>
<strong>
<i>
<b>
What is the correct HTML for creating a hyperlink?
What is the correct HTML for inserting an image?
<img href="image.gif" alt="MyImage">
<img src="image.gif" alt="MyImage">
<img alt="MyImage">image.gif</img>
<image src="image.gif" alt="MyImage">
An <iframe> is used to display a web page within a web page.
There is no such thing as an <iframe>
True
False
None
How can you open a link in a new tab/browser window?
<a href="url" target="new">
<a href="url" new tab>
<a href="url" new>
<a href="url" target="_blank">
Which doctype is correct for HTML5?
<!DOCTYPE html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0//EN" "http://www.w3.org/TR/html5/strict.dtd">
<!DOCTYPE HTML5>
None
In HTML, you can embed SVG elements directly into an HTML page.
True
False
Which input type defines a slider control?
slider
search
range
controls
In HTML, what does the <aside> element define?
The ASCII character-set; to send information between computers on the Internet
Content aside from the page content
A navigation list to be shown at the left side of the page
Graphics defined by SVG is in which format?
XML
HTML
CSS
Inline elements are normally displayed without starting a new line
True
False
