1. What does XHTML stand for?
2. XHTML is a Web standard
3. XML and HTML will be replaced by XHTML
4. HTML will be replaced by XHTML
5. What is the correct XHTML for a paragraph?
6. What is a correct XHTML tag for a line break?
7. What is the correct XHTML for an attribute and its value?
8. All elements in XHTML must be closed
9. Is this correct XHTML?
<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
<li>Milk</li>
</ul>
10. The DOCTYPE declaration has no closing tag
11. Which elements are mandatory in an XHTML document? | You answered: | doctype, html, head, and body |
Wrong Answer!
12. XHTML documents must be "well-formed"
13. What XHTML code is "well-formed"?
14. Which of the following is the right use of the lang attribute?
15. Which attribute replaces the name attribute for the following elements: a, applet, frame, iframe, img, and map?
16. Is attribute minimization allowed in XHTML?
17. Do all XHTML documents require a doctype?
18. What are the different DTDs in XHTML?
19. What is the most common XHTML DTD?
20. All XHTML tags and attributes must be in lower case
|