HTML - Level 1 Exam For Freelancer

#1 Question:
HTML stands for:
    Homepage Text Maker Language
    Homepage Tool Making Language
    HyperText Machine Language
    HyperText Markup Language
    Hyperlinked Text Markup Language

Answer: 
HyperText Markup Language


#2 Question:
The top-level container for an HTML document is:
    <body></body>
    <footer></footer>
    <html></html>
    <p></p>
    <table></table>

Answer: 
<html></html>

#3 Question:
In HTML versions 1 - 3, the <li> tag:
    always requires an ending tag.
    does not require an ending tag.
    is deprecated.
    is invalid.
    requires an ending tag only in an ordered list.

Answer: 
does not require an ending tag.

#4 Question:
All HTML tag attribute values must be enclosed in:
    braces
    brackets
    double quotes
    parenthesis
    question marks

Answer: 
double quotes

#5 Question:
The <meta> tag should be placed in the ________ section of an HTML page.
    <base>
    <body>
    <footer>
    <form>
    <head>

Answer: 
<head>

#6 Question:
To set a root URL for all links on an HTML page, use the __________ tag.
    <a>
    <base>
    <href>
    <link>
    <root>

Answer:  
base

#7 Question:
The <textarea> tag should be enclosed in what part of a HTML document?
    <footer>
    <form>
    <head>
    <p>
    <td>

Answer: 
form

#8 Question:
The correct (although deprecated) code to add a background image to a web page is:
    <background-image src="bgpic.gif" />
    <bg img="bgpic.gif">
    <body background="bgpic.gif">
    <img src="bgpic.gif" type="background" />
    a<bkground>bgpic.gif</bkground>

Answer: 
body background="bgpic.gif"

#9 Question:
A frameset document does NOT have:
    <html></html> tags
    a body section
    a head section
    a title
    any tags

Answer: 
any tags


#10 Question:
The ________ tag is used to create a bulleted list.
    <index>
    <li>
    <list>
    <ol>
    <ul>

Answer:    
li