What is the correct HTML element for inserting line break?
Front
<br>
Back
An <iframe> is used to display a web page within a web page
Front
True
Back
Choose the correct HTML element to define emphasis text
Front
<em>
Back
What is the correct HTML for adding a background color?
Front
<body style="background-color:yellow;">
Back
Inline elements are normally displayed without starting a new line
Front
True
Back
How can you open a link in a new tab/browser window in html?
Front
b. <a href= "url" target="_blank">
Back
What is the correct HTML for making a drop-down list?
Front
<input type="list">
Back
What does HTML stand for?
Front
Hypertext Markup Language
Back
Begin coding an HTML Document. Please include your header and paragraphs
Front
<!DOCTYPE html>
<title> HTML Test</title>
<body>
<h1>Welcome to the HTML test. This is a header, the largest header, h1.</h1>
<p>This is a paragraph. This HTML test is kind of stressful.</p>
</body>
<html>
Back
HTML comments start with <!-- and end with -->
Front
True
Back
What is the correct HTML for making a text area?
Front
<textarea>
Back
How can you make a bulleted list?
Front
<ul>
Back
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
Front
alt
Back
What is the correct HTML for creating a hyperlink?
Front
<a href="http://www.w3schools.com">W3Schools</a>
Back
Choose the correct HTML element to define important text
Front
<strong>
Back
What is the correct HTML for inserting an image?
Front
<img src="image.gif" alt="MyImage">
Back
What is the correct HTML for inserting a background image?