HTML Practice Quiz
How can you make a numbered list?
<ol>
What is the Correct HTML for making a drop down list?
<select>
What is the correct HTML element to define a important text?
<strong>
Which of these elements are all <table> elements>?
<table><tr><td>
What is the Correct HTML for making a text area
<textarea>
Which HTML element that defines the title of a document
<title>
HTML comments starts with <!-- and ends with -->? (true or false)
true
How can you make a bulleted list?
<ul>
An <iframe> is used to display a web page within a web page (true or false)
true
What does HTML stand for?
Hyper Text Markup Language
Who makes the web standards?
The World Wide Web Consortium
Inline elements are normally displayed without starting a new line (true or false)
true
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
alt
What is the Correct HTML for inserting an image
img src="image.gif" alt="MyImage">
Which Character used to indicate an end tag?
/
What is the correct HTML for creating a hyperlink?
<a href="http://www.w3schools.com">W3Schools</a>
How can you open a link in a new tab/browser window?
<a href="url" target="_blank">
What is the correct HTML for adding a background color?
<body style="background-color:yellow;">
What is the Correct HTML for inserting a background image
<body> style="background-image:url(background.gif)">
What is the correct HTML element for inserting a line break?
<br>
What is the correct HTML element to define emphasized text?
<em>
What is the correct HTML element for largest heading?
<h1>
What is the Correct HTML for making a "checkbox"?
<input type="checkbox">
What is the Correct HTML for making a text input field?
<input type="text">
Block elements are normally displayed without starting a new line (true or false)
false