0% found this document useful (0 votes)
35 views2 pages

Hyper Text Markup Language

The document provides answers to multiple-choice questions about HTML tags and syntax. It defines what HTML stands for, who makes web standards, and provides the correct HTML tags for headings, line breaks, adding background color, bold text, italics, hyperlinks, email links, opening links in new windows, tables, aligning table cell content, ordered lists, unordered lists, checkboxes, text inputs, drop-down lists, text areas, images, and background images.

Uploaded by

doche79
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views2 pages

Hyper Text Markup Language

The document provides answers to multiple-choice questions about HTML tags and syntax. It defines what HTML stands for, who makes web standards, and provides the correct HTML tags for headings, line breaks, adding background color, bold text, italics, hyperlinks, email links, opening links in new windows, tables, aligning table cell content, ordered lists, unordered lists, checkboxes, text inputs, drop-down lists, text areas, images, and background images.

Uploaded by

doche79
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 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