HTML Quiz
What is the correct HTML element for playing audio files?
<audio>
What is the correct HTML for inserting an image?
<img src="image.gif" alt="MyImage" />
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" />
Which HTML element is used to display a scalar measurement within a range?
<meter>
What is the correct HTML for making a drop-down list?
<select>
What is the correct HTML for making a text area?
<textarea>
Graphics defined by SVG is in which format?
XML
Are inline elements are normally displayed without starting a new line?
Yes
How can you open a link in a new tab/browser window?
target="_blank"
Use the <label> tag to give your __ __ a name if you like.
text area
How can you make a bulleted list?
<ul>
What is the correct HTML element for playing video files?
<video>
The HTML <canvas> element is used to __ __.
draw graphics
In HTML, onblur and onfocus are __ attributes.
event
Are block elements are normally displayed without starting a new line.
no
Which input type defines a slider control?
range
In HTML, which attribute is used to specify that an input field must be filled out?
required