HTML quiz
What is the correct HTML for creating a hyperlink?
<a href="http://www.w3schools.com">W3Schools</a>
How can you create an e-mail link?
<a href="mailto:xxx@yyy">
How can you open a link in a new tab/browser window?
<a href="url" target="_blank">
What is the correct HTML tag for inserting a line break?
<br>
Choose the correct HTML tag to make a text italic
<i>
How can you make a numbered list?
<ol>
What is the correct HTML for making a drop-down list?
<select>
Choose the correct HTML tag to make a text bold
<b>
Choose the correct HTML tag for the largest heading
<h1>
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">
Which of these tags are all <table> tags?
<table><tr><td>
What is the correct HTML for making a text area?
<textarea>
How can you make a bulleted list?
<ul>
In HTML, inline elements are normally displayed without starting a new line.
True
What does HTML stand for?
Hyper Text Markup Language
What is the correct HTML for making a text input field?
<input type="text">
What is the preferred way for adding a background color in HTML?
<body style="background-color:yellow;">
What is the correct HTML for inserting a background image?
<body style="background-image:url(background.gif)">
Who is making the Web standards?
The World Wide Web Consortium