1. What does HTML mean?
Hyper Text Markup Language
2. Who is the Web standard maker?
Your answer: World Wide Web Consortium (W3C)
3. In the following HTML, which is the largest heading?
Your answer: <h1>
4. In which of the following HTML can I insert a break line?
Your answer: <br>
5. In which of the following HTML can I add a background color?
<body bgcolor=”yellow”>
6. Please select the HTML tag that produces bold text:
Your answer: <b>
7. Please select the HTML tag that produces italics:
Your answer: < I >
8. Which of the following HTML can produce a hyperlink?
9. How to make email links?
<a href=”mailto:xxx@yyy”>
10. How do I open a link in a new window?
<a href=”url” target=”_blank”>
11. Which of the following are all table labels?
<table><tr>< TD >
12. Select the correct HTML tag to left-align the content in the cell:
< TD align=”left”>
13. How do I generate lists with numeric list symbols?
Your answer: < OL >
14. How do I generate a list with a dot list symbol?
Your answer: <ul>
15. Which of the following HTML can generate a check box?
<input type=”checkbox”>
16. Which of the following HTML can produce a text box?
<input type=”text”>
17. Which of the following HTML can produce a drop-down list?
<select>
18. Which of the following HTML can produce a textarea?
Your answer: <textarea>
19. In which of the following HTML can I insert an image?
<img SRC =”image.gif”>
20. In which of the following HTML can I insert a background image?
<body background=”background.gif”>