Review Questions for Module X20b: Getting Started with CSS ===================================== OBJECTIVES ---------- A. Identify the different components of a style rule; B. List document heading entities; C. Explain the purpose of paragraph and break entities; D. Explain the purpose of blockquote and preformatted entities; E. Describe the application of in-line styles; F. Differentiate block entities from inline entities; G. Identify basic styles for formatting text and backgrounds; H. Identify correct syntax for style rules. QUESTIONS --------- 1. What are the six document heading entities? 2. What is the purpose of paragraph and break entities? 3. What is the purpose of blockquote and preformatted entities? 4. What is the difference between block entities and inline entities? 5. Where are in-line styles used in Web documents? 6. List at least three basic styles for formating text with CSS: 7. List at least three basic styles for formating backgrounds with CSS: 8. What are the components of a style rule? 9. Write an example of a style rule: 10. What is the purpose of the "break" entity? 11. What is the purpose of the "preformatted" entity? ANSWERS ------- 1. ...Answer:

,

,

,

,

,
[X20bB1s] 2. ...Answer: Paragraph entities contain the ordinary text of a document. [X20bC1s] 3. ...Answer:Blockquote entities contain extended quotations of text by other authors. [X20bD1s] 4. ...Answer: Block entities begin on a new line of text, and most can hold either block or inline entities; inline entities can only hold other inline entities, and do not start a new line of text. [X20bF1s] 5. ...Answer: In block and other inline elements. [X20bE1s] 6. ...Answer: Any of the following: font-family, font-size, font-weight, font-style, text-decoration, text-align, text-indent, text-transform, color. [X20bG1s] 7. ...Answer: Any of the following: background, background-color, background-image [X20bG2s] 8. ...Answer: A rule is composed of a Property and a Value. [X20bA1s] 9. ...Answer: Two examples are shown here... [X20bH1s] ...Answer: font-family: Verdana, Arial, Helvetica; color: blue; ...Answer: color: red; 10. ...Answer: The break entity
starts a new line within a block entity. [X20bC2s] 11. ...Answer: The Preformatted entity
 allows text to be displayed as it appears in the code, without word-wrap.	[X20bD2s]