Header Footer Pages
|
- One application of header-footers are to provide navigation
elements.
- Can be implemented using frames from Chapter
5 of the text.
- Can more easily be implemented using the <Iframe> tag which
creates a floating window.
The following illustrates its use where the text above and below
are navigation elements. Test the difference between the top
navigation and the bottom navigation behavior.
|
| |
The Syllabus was inserted into the frame by:
<table border="1" width="80%" cellspacing="0"
cellpadding="0">
<tr>
<td>
<map name="FPMap1">
<area href="Syllabus.htm"
shape="rect" coords="17, 3, 133, 35">
<area href="wd8.htm"
shape="rect"
coords="182, 2, 314, 39">
<area href="wd10.htm"
shape="rect" coords="358, 1, 506,
39"
title="Next chapter">
</map>
<img border="0" src="wd9_1.jpg"
usemap="#FPMap1"
width="507" height="44">
</td>
</tr>
<tr>
<td>
<iframe src="Syllabus.htm" width="100%"
name="floating">
</iframe>
</td>
</tr>
<table border="0" width="80%" cellspacing="0"
cellpadding="0" bgcolor="#C0C0C0">
<tr>
<td width="33%"><a href="hw1.htm"
target="floating">
Homework 1</a>
</td>
<td width="33%"><a href="hw2.htm"
target="floating">
Homework 2</a>
</td>
<td width="34%"><a href="hw3.htm"
target="floating">
Homework 3</a>
</td>
</tr>
</table>
</table> |
|
| |
Printing
|
- Pages designed for browsing generally are not designed for
printing, contains:
- navigation
- interactive elements
- graphics
- etc.
- does not handle pagination or other printer formatting.
- Pages designed for printing generally are not well-designed
for browsing, should not display navigation, interactive elements,
etc.
- Generally should prepare a separate document for printing and
pages for browsing.
- Provide links to special print documents, see the
Computer Science program bulletins .
|
|