1. What does HTML do?
It processes code to form a program
It interprets code and display it on screen
It contains instructions for the browser to work
It is the language used to create websites
2. What does XHTML stands for?
EXtensible Markup Language
EXtension Markup Language
EXtensional Markup Language
EXtentl Markup Language
3. The simplest tool to start with HTML for Windows is
Notepad
SimpleText
Microsoft Word
FrontPage
4. The tool to start HTML on Macintosh is
FrontPage
Notepad
SimpleText
TextMate
5. The most recommended file name to "save as" for your homepage is
home.html
index.html
page.html
front.html
6. The first version of HTML?
HTML2.0
HTML1.0
HTML3.0
HTML4.0
Intermediate Questions
7. How do you add a title to the browser window?
Use the h1 tag
Use the head tag
Use the title tag
Use the meta tag
8. The tag you use for paragraphs?
The pr tag
The p tag
The pg tag
The span tag
9. What is the correct way to insert a line break?
Use the p tag
Use the hr tag
Use the br tag
Just press enter on the HTML document
10. How to insert comments in HTML?
<-- ... -->
<!-- ... -->
<!- ... -->
<- ... -->
11. The meta tag for keyword allows
us to display its keyword on the status bar
us to define technical words on rollover
the site to rank higher in search engines
the site to be indexed in external sites
12. External CSS files can be attached by using
the link tag
the ending tag
the external tag
the object tag
13. How can we give an element an ID?
Attributes
Nesting elements
Empty elements
Comments
14. What makes up a HTML document?
<html></html>
<&head></head>
<&body></body>
All of the above
15. How do you add an attribute to an element?
attribute="value"
attribute=value
attribute="value;"
attribute=value;
16. How do we put a paragraph inside a division?
Tags
Empty elements
Nesting elements
Attributes
17. XHTML can also work on which type devices?
PDAs
Mobile Phones
Laptops
All of the above
18. In XHTML, all the elements must be in
lowercase
uppercase
bold
italic
19. What should we use for quotation in document?
"
"e;
&q;
"
20. Where do we validate our website?
http://validator.yahoo.com/
http://validator.google.com/
http://validator.w3.org/
http://validator.thinkquest.com
21. Which of the following is properly nested?
<p> This <span>Hello! </span></p>
<p> This <span>Hello! </p></span>
<p> This <span>Hello! </span> <p>
<p> This <span>Hello! </p><span>
22. The DOCTYPE that does not allow any mistakes in XHTML is
Transitional
Fixed
Frameset
Strict
23. How should we close the br tag in XHTML?
<br>
<br />
</br>
All of the above