2/16/06 Notes

To Notes

Summary for HCI 201 -- 2/16/06

 

Review Questions

  1. How do you create an ordered list using FrontPage?
    Ans: Type in the items hitting enter inbetween each item. Then highlight the items with the mouse, select main menu Format >> Bullets and Numbering >> Numbers >> select arabic numbers.

  2. How do you create an unordered list using FrontPage?
    Ans: Same as Problem 1 except choose Plain Bullets and select solid bullets.

  3. How do you change the counters (numbers or bullets) of a list using FrontPage?
    Ans: Highlight the list, select List Properties and change to the type of numbers or bullets that you want.

  4. What are the HTML tags for an ordered list, unordered list, and list item?
    Ans: <ol> <ul> <li>.

  5. What are the default counters for ordered list and unordered list.
    Ans: Arabic numbers (1, 2, 3, ...) and solid bullets.

  6. How do you change the counter for a list in a style? Ans. Add this style:
    li { list-style-type : upper-roman }

  7. Modify the following styles to make the background color very light blue, the text color very dark blue, the body font arial, the color of the h1 headings maroon, and the font of the h1 headings Comic Sans MS.
    body { background-color:#FFFFF0; color:#000000; font-family:Verdana; }
    h1   { color:#000080; font-family:Georgia; font-weight:bold; }
    Ans: After modification:
    body { background-color:#F0F0FF; color:#000040; font-family:Arial; }
    h1   { color:maroon; font-family:Comic Sans MS; font-weight:bold; }

 

Advantages of CSS Styles over HTML Attributes

 

Disadvantages of CSS Styles

 

Units for Styles

 

The <strong> and <em> tags.

 

Styles for Address Tags

 

Inline Styles

 

Styles for Layers

 

The <span> Tag

 

Padding, Borders and Margins

 

Background Images