Do You Know your Html - Multichoice Quiz

This course assumes you already have a basic understanding of html tags.
So lets start with a test of your existing html skills.
There are 20 questions in this test you should aim to get at least 75%.
(Only a correct response on the first attempt will increase your score.)

Question 1 What does HTML stand for?
Hyperlinks and Text Markup Language
Hyper Text Markup Language
Home Tool Markup Language
Hyper Text Machine Language
  
Question 2 Who is responsible for making the Web standards?
Microsoft
Netscape
Web Standards International
The World Wide Web Consortium
  
Question 3 The correct HTML tag for the largest heading
<heading>
<h6>
<head>
<h1>
  
Question 4 The correct HTML tag for inserting line breaks
<br />
<break />
<lb />
<newline />
  
Question 5 The correct HTML for adding a background color
<background>yellow</background>
<body bgcolor="yellow">
<body color="yellow">
<bkgroundcolor="yellow">
  
Question 6 The correct HTML tag to make text bold
<bold>
<bld>
<bb>
<b>
  
Question 7 The correct HTML tag to make text italics
<italics>
<italic>
<ii>
<i>
  
Question 8 The correct HTML for inserting an image
<image src="image.gif" />
<img>image.gif<img />
<img href="image.gif />
<img src="image.gif" />
  
Question 9 The correct HTML for inserting a background image
<body background="background.gif">
<background img="background.gif">
<img src="background.gif" background>
<background></background>
  
Question 10 The correct HTML for making a hyperlink
<a>http://www.domain.com</a>
<a href="http://www.domain.com">Click me</a>
<a url="http://www.domain.com">Click me</a>
<a name="http://www.domain.com">Click me</a>
  
Question 11 How can you make an e-mail link?
<mail href="xxx@yyy">
<a href="xxx@yyy">
<a href="mailto:xxx@yyy">
<mail>xxx@yyy</mail>
  
Question 12 Which of these tags are all <table> tags?
<table><tr><tt>
<thead><body><tr>
<table><tr><td>
<table><head><tfoot>
  
Question 13 The correct HTML to left-align the content inside a tablecell
<td leftalign>
<td valign="left">
<tdleft>
<td align="left">
  
Question 14 How can you make a list that lists the items with 1, 2, 3...?
<ol>
<dl>
<ul>
<list>
  
Question 15 How can you make an unordered list ?
<ol>
<ul>
<dl>
<list>
  
Question 16 The correct HTML for making checkboxes
<check>
<input type="checkbox">
<input type="check">
<checkbox>
  
Question 17 The correct HTML for making input fields
<textfield>
<input type="textfield">
<input type="text">
<textinput type="text">
  
Question 18 The correct HTML for making a drop-down list
<select>
<input type="dropdown">
<list>
<input type="list">
  
Question 19 The correct HTML for making text areas
<input type="textbox">
<input type="textarea">
<textarea></textarea>
<table></table>
  
Question 20 How can you open a link in a new browser window?
<a href="url" target="_blank">
<a href="url" new>
<a href="url" target="new_window">
you can't