1. What does HTML stand for?
Hyper Text Markup Language
Hyperlinks and Text Markup Language
Home Tool Markup Language
|
a
|
2. Who is making the Web standards?
Google
The World Wide Web Consortium
Mozilla
Microsoft
|
b
|
3. Choose the correct HTML tag for the largest heading
<h6>
<h1>
<heading>
<head>
|
b
|
4. What is the correct HTML tag for inserting a line break?
<br>
<lb>
<break>
|
a
|
5. What is the preferred way for adding a background color in HTML?
<body style="background-color:yellow;">
<background>yellow</background>
<body background="yellow">
|
a
|
6. Choose the correct HTML tag to make a text bold
<bold>
<b>
|
b
|
7. Choose the correct HTML tag to make a text italic
<italic>
<i>
|
b
|
8. What is the correct HTML for creating a hyperlink?
<a name="http://www.w3schools.com">W3Schools.com</a>
<a href="http://www.w3schools.com">W3Schools</a>
<a>http://www.w3schools.com</a>
<a url="http://www.w3schools.com">W3Schools.com</a>
|
b
|
9. How can you create an e-mail link?
<a href="mailto:xxx@yyy">
<mail>xxx@yyy</mail>
<mail href="xxx@yyy">
<a href="xxx@yyy">
|
a
|
10. How can you open a link in a new tab/browser window?
<a href="url" new>
<a href="url" target="new">
<a href="url" target="_blank">
|
c
|
11. Which of these tags are all <table> tags?
<thead><body><tr>
<table><head><tfoot>
<table><tr><td>
<table><tr><tt>
|
c
|
12. In HTML, inline elements are normally displayed without starting a new line.
True
False
|
True
|
13. How can you make a numbered list?
<dl>
<ul>
<ol>
<list>
|
c
|
14. How can you make a bulleted list?
<ol>
<dl>
<ul>
<list>
|
c
|
15. What is the correct HTML for making a checkbox?
<checkbox>
<check>
<input type="check">
<input type="checkbox">
|
d
|
16. What is the correct HTML for making a text input field?
<input type="textfield">
<textinput type="text">
<input type="text">
<textfield>
|
c
|
17. What is the correct HTML for making a drop-down list?
<select>
<input type="list">
<list>
<input type="dropdown">
|
a
|
18. What is the correct HTML for making a text area?
<textarea>
<input type="textarea">
<input type="textbox">
|
a
|
19. What is the correct HTML for inserting an image?
<image src="image.gif" alt="MyImage">
<img alt="MyImage">image.gif</img>
<img href="image.gif" alt="MyImage">
<img src="image.gif" alt="MyImage">
|
d
|
20. What is the correct HTML for inserting a background image?
<img src="background.gif" background>
<body background="background.gif">
<background img="background.gif">
|
b
|