HTML QUIZ

5
HTML QUIZ Points: 12 out of 20 1. What does HTML stand for? You answered: Hyper Text Markup Language Correct Answer! 2. Who is making the Web standards? You answered: The World Wide Web Consortium Correct Answer! 3. Choose the correct HTML tag for the largest heading You answered: <h1> Correct Answer! 4. What is the correct HTML tag for inserting a line break? You answered: <br> Correct Answer!

description

HTML QUIZ

Transcript of HTML QUIZ

Page 1: HTML QUIZ

HTML QUIZ Points: 12 out of 20

1. What does HTML stand for?

You answered:

Hyper Text Markup Language

 Correct Answer!

2. Who is making the Web standards?

You answered:

The World Wide Web Consortium

 Correct Answer!

3. Choose the correct HTML tag for the largest heading

You answered:

<h1>

 Correct Answer!

4. What is the correct HTML tag for inserting a line break?

You answered:

<br>

 Correct Answer!

5. What is the preferred way for adding a background color in HTML?

You answered:

Page 2: HTML QUIZ

<body style="background-color:yellow;">

 Correct Answer!

6. Choose the correct HTML tag to make a text bold

You answered:

<b>

 Correct Answer!

7. Choose the correct HTML tag to make a text italic

You answered:

<i>

 Correct Answer!

8. What is the correct HTML for creating a hyperlink?

You answered:

<a name="http://www.w3schools.com">W3Schools.com</a>

 Wrong Answer!

9. How can you create an e-mail link?

You answered:

<a href="mailto:xxx@yyy">

 Correct Answer!

Page 3: HTML QUIZ

10. How can you open a link in a new tab/browser window?

You answered:

<a href="url" target="_blank">

 Correct Answer!

11. Which of these tags are all <table> tags?

You answered:

<table><tr><td>

 Correct Answer!

12. In HTML, inline elements are normally displayed without starting a new line.

You answered:

True

 Correct Answer!

13. How can you make a numbered list?

You answered:

<ol>

 Correct Answer!

14. How can you make a bulleted list?

You answered:

<list>

Page 4: HTML QUIZ

 Wrong Answer!

15. What is the correct HTML for making a checkbox?

You answered:

<input type="checkbox">

 Correct Answer!

16. What is the correct HTML for making a text input field?

You answered:

<textfield>

 Wrong Answer!

17. What is the correct HTML for making a drop-down list?

You answered:

<select>

 Correct Answer!

18. What is the correct HTML for making a text area?

You answered:

<textarea>

 Correct Answer!

Page 5: HTML QUIZ

19. What is the correct HTML for inserting an image?

You answered:

<image src="image.gif" alt="MyImage">

 Wrong Answer!

20. What is the correct HTML for inserting a background image?

You answered:

<img src="background.gif" background>

 Wrong Answer!