2/28/06 Notes

To Notes

Summary for HCI 201 -- 2/28/06

 

Review Questions

  1. Why are pages with long paragraphs bad in a website?
    Ans: Because website users do not like to read long paragraphs. Pages with long paragraphs are also likely to result in long pages requiring scrolling.

  2. What are breadcrumbs?
    Ans: They are dynamically generated links on a page that show where the user has been.

  3. What is a You Are Here indicator?
    Ans: It is a dynamically generated mark on the navigation page that shows where the user is in the website.

  4. What are some units allowed in CSS styles besides pixels.
    Ans: in, mm, cm, pt, pc, %.

  5. For what are the <strong> and <em> tags used?
    Ans: By default, <strong> means bold and <em> means italic. However, these tags can be redefined via a document-level or external style to mean anything you want.

  6. Explain the difference between the margin, border and padding for an HTML item.
    Ans: The padding is the region immediately around the HTML element, the border is around the margin and the margin is around the border. The margin and padding are transparent; the margin lets the element background color show through and the padding lets the background color of the containing element (like td or body) show through. The border has its own color.

  7. How do you set the background image for an HTML page?
    Ans: (1) Right click on the page and select the Formatting tab. Browse for the image. This produces the HTML body tag: < body background="images/bg.jpg">
    (2) Set a document-level or external style like this:
    body { background-image : url('images/bg.jpg') }

 

Adding User Defined Links to Webpages

 

Adding a Theme to a Website