Download Week 7 Quiz

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts
no text concepts found
Transcript
Name: ________________________________
Date: __________________________
Introduction to Web Design
Week 7 Quiz
1. RGB stands for:
a. Red, Gray, Black
b. Royal Blue, Gold, Brown
c. Red, Green, Blue
d. Red, Gold, Brown
2. To increase the color blue in the hex code #AA3450, you could use which code?
a. #AA34AA
b. #AA3400
c. #FF3450
d. #AAFF50
3. What is the primary reason we are limited in the fonts we can use on our web pages?
a. Most fonts do not look good on the internet.
b. Choosing inappropriate fonts can slow a website's performance.
c. We are restricted to those fonts installed on our viewers' computers.
d. Fonts are expensive and we have to stick with those we can afford.
4. Which of the following is a common sans-serif font?
a. Times New Roman
b. Palatino Linotype
c. Book Antiqua
d.
Verdana
5. Which of the following is not true about declaring fonts for our web pages?
a. Font names containing spaces must be surrounded by quotes.
b. Fonts should be listed in reverse order of preference.
c. Fallback fonts are recommended, in case the primary font is not available.
d. Our choice of font will have an effect on the "look and feel" of our website.
Name: ________________________________
Date: __________________________
6. Which is an effective way to guarantee that an unusual font will display on our page?
a. Purchase the font and install it on our website.
b. Name at least two fallback fonts in our declaration.
c. Place the text into an image and display the image on the page.
d. Place the font name in quotes in our declaration.
7. Why is it important to validate our XHTML pages?
a. It confirms that all our web pages are linked together properly.
b. It improves the likelihood that our web pages will display consistently to visitors.
c. It verifies that our page content is factually correct.
d. It is required before search engines will list our website.
8. How does the XHTML validator know which rules to apply to our web document?
a. It is based on which web browser we are using.
b. All documents have the same rules applied to them.
c. It will prompt us each time to select a set of rules.
d. It is based on what we specify in the DOCTYPE statement.
9. If our XHTML document fails validation, how do we know what was wrong?
a. The validator program will email us a file listing the errors.
b. We have to figure out the errors on our own and retry validation.
c. The validator program will list the line numbers and errors detected.
d. The validator program will fix the errors and display a corrected version of the file.
10. Write the CSS to make paragraph text display in Century Gothic font. If that font is not available,
make Tahoma and sans-serif as the backup fonts, in that order:
Name: ________________________________
Date: __________________________
Introduction to Web Design
Week 7 Quiz Answer Key
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
C
A
C
D
B
C
B
D
C
p {
font-family: "Century Gothic", Tahoma, sans-serif;
}