Question 2
    When CSS is coded in the body of the web page as an attribute of an HTML tag it is called _____ .
    	A. 	
    Embedded
    	B. 	
    Inline
    	C. 	
    External
    	D. 	
    Imported
10 points  
Question 3
    Select the items below that can be used as a CSS Selector.
    	A. 	
    an HTML element
    	B. 	
    a class name
    	C. 	
    an id name
    	D. 	
    All of the above
10 points  
Question 4
    The declaration property used to set the text color on a web page is:
    	A. 	
    bgcolor
    	B. 	
    text-color
    	C. 	
    color
    	D. 	
    None of the above
10 points  
Question 5
    To apply a style to a certain group of elements on a web page, configure a CSS _____ .
    	A. 	
    group
    	B. 	
    id
    	C. 	
    class
    	D. 	
    None of the above
10 points  
Question 6
    Use the _____ property to configure bold text using CSS.
    	A. 	
    bold
    	B. 	
    font-style
    	C. 	
    font-weight
    	D. 	
    you cannot configure bold text with CSS
10 points  
Question 7
    An External Style Sheet uses the _____ file extension.
    	A. 	
    ess
    	B. 	
    css
    	C. 	
    htm
    	D. 	
    No file extension is necessary
10 points  
Question 8
    Use the _____ tag to associate a web page with an External Style Sheet.
    	A. 	
    
    	B. 	
    
    	C. 	
    
    	D. 	
    
10 points  
Question 9
    Select the code below that uses CSS to configure a background color of #eaeaea for a Web page.
    	A. 	
    body {background-color:#eaeaea;}
    	B. 	
    document {background-page:#eaeaea;}
    	C. 	
    body {bgcolor:#eaeaea;}
    	D. 	
    None of the above
10 points  
Question 10
    Select the code below that configures a class called "offer" with blue text, 20px and Arial or sans-serif font using CSS.
    	A. 	
    offer {color:blue;font-size:20x;font-family:Arial,sans-serif;}
    	B. 	
    .offer {color:blue;font-size:20px;font-family:Arial,sans-serif;}
    	C. 	
    .offer {text:blue;font-size:20px;font-family:Arial,sans-serif;}
    	D. 	
    #offer {text:blue;font-size:20x;font-family:Arial,sans-serif;}
10 points  
Question 11
    Use the _____ tag to configure a generic area on a web page that is embedded within a paragraph or other block display element.
    	A. 	
    
    	B. 	
    
    	C. 	
    
    	D. 	
    All of the above
10 points  
Question 12
    Use the _____ tag to code embedded styles on a web page.
    	A. 	
    
    	B.