| [Index of Lessons] [Lesson 10] [Lesson 12] |
11. Address Footers and Email Links |
| Footers A good feature of web pages is a "footer" at the bottom of a page, this provides information about the author and the document, maybe the last date it was modified, as well as a means to send the author a message by e-mail. This is the place for the address tag which just stylizes a block of text in italic and offsetting it to a new line. It is a good idea to make footers brief, informative, and consistent between your different web pages. Some useful information to include is:
Though it is a useful thing to have, not every page for the site you are making needs these footers, if you put the footer on the important pages then people will still know. Note that all other HTML inside the address tag is legal, so we might modify it with bold tags, line breaks, and a hypertext link tag. |
| Address Tag | ||
| HTML | Result | |
<address> <b>Web Creation</b> Last Updated December 31, 1999 Web Page by Sean Costain (angelcat@microtech.com.au) <a href="index.htm"> Web Creation</a> </address> |
Web Creation Last Updated December 31, 1999 Web Page by Sean Costain (angelcat@microtech.com.au) Web Creation |
|
| Address Tag & Email Link | ||
| HTML | Result | |
<address> <b>Web Creation</b> Last Updated December 31, 1999 Web Page by Sean Costain <a href="mailto: angelcat@microtech.com.au"> (angelcat@microtech.com.au)</a> <a href="index.htm"> Web Creation</a> </address> |
Web Creation Last Updated December 31, 1999 Web Page by Sean Costain (angelcat@microtech.com.au) Web Creation |
|
| Click on Lesson 12 to continue, or click here (Top) to return to the top of document |