QUIZ 2 HTML QUIZ PRIOR
What is the correct HTML for making a text area?
You answered: <textarea>
What does HTML stand for?
Hyper Text Markup Language
2. Who is making the Web standards?
The World Wide Web Consortium Correct Answer! ________________________________________
Which doctype is correct for HTML5?
You answered: <!DOCTYPE html>
How can you open a link in a new tab/browser window?
You answered: <a href="url" target="_blank">
Which HTML element is used to specify a header for a document or section?
You answered: <header>
39. In HTML, what does the <aside> element define?
You answered: Content aside from the page content
Graphics defined by SVG is in which format?
You answered: XML
What is the correct HTML for creating a hyperlink? You answered:
<a href="http://www.w3schools.com">W3Schools</a>
Which character is used to indicate an end tag?
You answered: /
What is the correct HTML element for playing AUDIOFILES
You answered: <audio>
5. What is the correct HTML for adding a background color?
You answered: <body style="background-color:yellow;"> Correct Answer! ________________________________________
. What is the correct HTML for making a text input field?
You answered: <input type="text">
What is the correct HTML for making a drop-down list?
You answered: <select>
6. Choose the correct HTML element to define important text
You answered: <strong> Correct Answer!
What is the correct HTML for inserting a background image?
You answered: <body style="background-image:url(background.gif)">
4. What is the correct HTML element for inserting a line break?
You answered: <br> Correct Answer!
Choose the correct HTML element to define emphasized text
You answered: <em>
Which HTML element is used to specify a footer for a document or section?
You answered: <footer>
3. Choose the correct HTML element for the largest heading:
You answered: <h1> Correct Answer!
What is the correct HTML for inserting an image?
You answered: <img src="image.gif" alt="MyImage">
What is the correct HTML for making a checkbox?
You answered: <input type="checkbox">
Which HTML element is used to display a scalar measurement within a range?
You answered: <meter>
Which HTML element defines navigation links?
You answered: <nav>
How can you make a numbered list?
You answered: <ol>
Which HTML element defines the title of a document?
You answered: <title>
How can you make a bulleted list?
You answered: <ul>
What is the correct HTML element for playing video files?
You answered: <video>
In HTML, onblur and onfocus are:
You answered: Event attributes
Block elements are normally displayed without starting a new line.
You answered: False
The HTML global attribute, "contenteditable" is used to:
You answered: Specify whether the content of an element should be editable or not
An <iframe> is used to display a web page within a web page.
You answered: True
HTML comments start with <!-- and end with -->
You answered: True
In HTML, you can embed SVG elements directly into an HTML page.
You answered: True
Inline elements are normally displayed without starting a new line.
You answered: True
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
You answered: alt
The HTML <canvas> element is used to:
You answered: draw graphics
Which input type defines a slider control?
You answered: range
In HTML, which attribute is used to specify that an input field must be filled out?
You answered: required