3/2/06 Notes

To Notes

Summary for HCI 201 -- 3/2/06

 

Review Questions

  1. On which edge of a web page should the navigation bar be located?
    left   right   top   bottom.
    Ans: Either the top (easier) or left (requires a table or layers).

  2. What does a FrontPage theme do for you?
    Ans: Automatically sets the colors, fonts, bullets, navigation buttons, etc. for a website.

  3. How do you add a theme to a website using FrontPage?
    Ans: Select Insert Theme. Then select one of the available themes on the right and apply it to all the pages of the website.

 

Creating Web Pages with Frames

 

Practice Problems on Framesets for Quiz 5

Show what the frames page looks like for each of these framesets:

  1. <frameset rows="33%,*">
        <frame name="banner" src="a.htm">
        <frameset cols="25%,*">
            <frame name="contents" src="b.htm">
            <frame name="main" src="c.htm">
        </frameset>
    </frameset>
    
    Ans: Screen Dump for Example 1

  2. <frameset rows="33%,*">
        <frameset cols="25%,40%,*">
            <frame name="one" src="a.htm">
            <frame name="two" src="b.htm">
            <frame name="three" src="c.htm">
        </frameset>
        <frameset cols="35%,*">
    	<frame name="four" src="d.htm">
    	<frame name="five" src="e.htm">
        </frameset>
    </frameset>
    
    Ans: Screen Dump for Example 2

  3. <frameset rows="15%,*,15%">
        <frame name="top" src="a.htm">
        <frameset cols="25%,*">
            <frame name="contents" src="b.htm">
    	<frame name="main" src="c.htm">
        </frameset>
        <frameset cols="75%,*">
            <frame name="bottom-left" src="d.htm">
            <frame name="bottom-right" src="e.htm">
        </frameset>
    </frameset>
    
    Ans: Screen Dump for Example 3

 

Setting Scrollbar Colors

 

Inline Frames