HTML
Which doctype is correct for HTML5?
<!DOCTYPE html>
Choose 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;">
Choose 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>
Choose the correct HTML element to define emphasized text.
<em>
Which HTML element is used to specify a header for a document or section?
<header>
Choose the correct HTML for inserting an image?
<img src="image.gif" alt="MyImage">
Choose the correct HTML for making a checkbox.
<input type="checkbox">
Choose the correct HTML for making a text input field
<input type="text">
Choose the correct HTML for making a text area.
<input type="textbox">
Choose the correct HTML element to display a scalar measurement within a range
<meter>
numbered list
<ol>
Choose the correct HTML for making a drop-down list
<select>
Choose the correct HTML element to define important text.
<strong>
Which of these elements are all <table elements?
<table><tr><td>
Choose the correct HTML element to define the title of a document.
<title>
bulleted list
<ul>
What is the correct HTML element for playing video files?
<video>
Graphics defined by SVG is in which format?
XML
In HTML, what does the <aside> element define?
content aside from the page content.
The HTML <canvas> element is used to:
draw graphics
In HTML, onblur and onfocus are:
event attributes
Block elements are normally displayed without starting a new line, true or false?
false
Which input type defines a slider control?
slider
The HTML global attribute, "contenteditable" is used to..
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, true or false?
true
In HTML, you can embed SVG elements directly into an HTML page, true or false?
true
Inline elements are normally displayed without starting a new line, true or false?
true