Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Hyper Text Markup Language

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

1. What does HTML stand for?

Hyper Text Markup Language


2. Who is making the Web
standards?

The World Wide Web Consortium


3. Choose the correct HTML tag for the largest heading

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

<br />

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

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

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

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

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

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

9. How can you create an e-mail


link?

<a href="xxx@yyy">
10. How can you open a link in a new browser window?

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


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

<table><tr><td>
12. Choose the correct HTML to left-align the content inside a tablecell
<td align="left">
13. How can you make a list that lists the items with numbers?

<ol>
14. How can you make a list that lists the items with bullets?

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

<input type="checkbox" />


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

<input type="text" />


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

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

<textarea>

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

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


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

<body background="background.gif">

You might also like