Useful URL for HTML tags


List of HTML tags
=================

Graham's Collection of HTML Information

http://www.trailstone.com/library/internet.html#WWWINFO
http://www.w3.org/TR/PR-html40/index/elements.html
http://www.utoronto.ca/webdocs/HTMLdocs/NewHTML/htmlindex.html
http://www.htmlcompendium.org/sitemap.htm
Use this page to help with notation on the above URL pages


Sample Frame tags JavaScript Guide
================

http://home.netscape.com/eng/mozilla/3.0/handbook/javascript/index.html


image maps
==========



Above is a sample of an image map from Villanova University's homepage and below is code that makes it function.


<img src="mainnav.jpg" hspace=30 usemap="#mainnav" border=0>
<MAP NAME="mainnav">
<AREA SHAPE="rect" COORDS="8,0,47,19" HREF="http://dgprod2.vill.edu">
<AREA SHAPE="rect" COORDS="63,0,123,19" HREF="http://dgprod2.vill.edu/contents.htm">
<AREA SHAPE="rect" COORDS="140,0,212,19" HREF="http://dgprod2.vill.edu/whatsnew.htm">
<AREA SHAPE="rect" COORDS="229,0,305,19" HREF="http://dgprod2.vill.edu/textonly.htm">
<AREA SHAPE="rect" COORDS="323,1,392,19" HREF="mailto:cak@ucis.vill.edu">
<AREA SHAPE="rect" COORDS="408,1,499,19" >
<AREA SHAPE="rect" COORDS="510,1,566,19" HREF="http://www.vill.edu/search/swish.11/search.htm">
</MAP>