Footer Module
Web Material:
HTML Writing Guide
Site Home Page
Web Page Standards

Back to Previous Page

Footer:
This section appears at the bottom of a web page and typically contains Point of Contact (POC) information. POC consists of the name of a webmaster or company personnel responsible for updating the page and answering any question about it. E-mail addresses, links to the POC and telephone numbers usually are included.

Pages on this disk only have a copyright logo, my name, and a time stamp. A simple JavaScript code operates the time stamp. You may edit the terms in BLUE.
Sample:
© Page Publisher: Duane R. Hurst


JavaScript for the Time Stamp:
DO NOT MAKE ANY CHANGE AT ALL TO THIS JAVASCRIPT!
Even one character change will cause this script to fail!
Do not be concerned with the date of 11 Dec 2011; this will not adversely affect the code.
Copy This Code:
<script>
if (Date.parse(document.lastModified) != 0)
document.write("<small><i>Last Modified: "+
document.lastModified +
"</i></small>");
else
document.write("<small><b><i>Last Modified: 11 Dec 2011</i></b></small>");
</script>

© Page Publisher: Duane R. Hurst