Images
|
Images can be used in place of text for links.
The camel can serve as a hyperlink to the relative syllabus
file by:
<a href="Syllabus.htm">
<img SRC="html_5.gif">
</a>
|
Result:
Image maps can be created relatively easily also.
The
structure chart is navigated by defining the x,y coordinates of the
upper-left and lower-right corners of rectangles and their associated
link.
<img border="0" src="html_6.jpg"
usemap="#website" width="306" height="83">
<Map name="website">
<area shape="rect" coords="109,53,196,79" href="HW1.htm">
<area shape="rect" coords="98,6,208,30" href="Syllabus.htm">
<area shape="rect" coords="1,53,88,79" href="HTML.htm">
<area shape="rect" coords="217,53,303,79" href="HW2.htm">
</Map> |
|