Writing HTML | About | Index | previous |

Address Footers and E-Mail Links

Hey! You created a snazzy web page-- autograph it with a footer!

Objectives

After this lesson you will be able to:

Lesson

Note: If you do not have the working documents from the previous lessons, download a copy now.

A common and worthwhile features of web pages are to put a "footer" at the bottom of a page that provides information about the author, as well as a means to send them a message by e-mail. The is the place for the ADDRESS tag which usually does no more then stylizing a block of text in italic and offsetting it to a new line.

Stylistically, it is good to make these brief, informative, and consistent between different web pages. Some useful information to include is:

As examples, see the footers at the bottom of very web page in this tutorial. In composing your own style, take a look at other web pages for ideas. Imitation still is a very high form of flattery. The syntax for the ADDRESS tag is:

    <address>
    Page Title
    Last Updated February 31, 1999
    Web Page by My Name Here (me@abc.edu)
    ABC University
    </address>    
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>
    <b>Page Title</b> <br>
    Last Updated February 31, 1999 <br>
    Web Page by My Name Here (me@abc.edu) <br>
    <a href="http://www.abc.edu/">ABC University</a><br>
    </address>    
which should produce:


Page Title
Last Updated February 31, 1999
Web Page by My Name Here (me@abc.edu)
ABC University

Now, suppose someone was reading your page and wanted to send you a comment on how nice your page looked. They would have to write down your e-mail address, launch another program, and send you a message. Wouldn't it be great if you could send email from your Web browser? Well, most browsers now can!

The way to do this is to create a hypertext link with the mailto type in the URL (see lesson 8b for a refresher). Create an email hypertext link like this:

    <a href="mailto:levine@maricopa.edu">send an e-mail to alan</a>
When the send an e-mail to alan is clicked, the web browser will bring up a screen to compose a message and send it to me. Try it! send an e-mail to alan

Note that you can have any text (or graphic) act as the hypertext link. So in the previous example, we would modify the HTML to have the internet address create the link for typing e-mail.

    <address>
    <b>Page Title</b> <br>
    Last Updated February 31, 1999 <br>
    Web Page by My Name Here <a href="mailto:me@abc.edu">(me@abc.edu)</a> <br>
    <a href="http://www.abc.edu/">ABC University</a><br>
    </address>    
which should produce:


Page Title
Last Updated February 31, 1999
Web Page by My Name Here (me@abc.edu)
ABC University

Now it is time to add a footer to your HTML file. For this example, we assume you are "Lorrie Lava" a staff Volcanologist at Big University. (Feel free to put you own information in place of what istyped below):

  1. Open the HTML file, Volc.html in your text editor.
  2. at the bottom of the document, add the following:
    <HR>
    <ADDRESS><B>Volcanoes!</B> An example to demonstrate creating Web Pages<br>
    created by Lorrie Lava, <A HREF="mailto:lava@pele.bigu.edu">lava@pele.bigu.edu</A><br>
    Volcanic Studies, <A HREF="http://www.bigu.edu/">Big University</A><p>
    <TT>last modified: April 1, 1991</TT>
    </ADDRESS>
    <p>
    
    NOTE: We've used several HTML tags that have been covered in previous lessons. Also note the extra <p> tag at the bottom; this makes sure the last line of text is always visible
  3. Save and Reload the HTML file.

Check Your Work

Compare your document with a sample of how this document should appear. If your document was different than the sample, review the text you entered in the text editor.

Review

Review topics for this lesson:
  1. What does an ADDRESS tag do?
  2. Does an ADDRESS tag have to be at the bottom?
  3. How do you create a tag that will e-mail to you? to someone else?

Independent Practice

Add an ADDRESS footer and e-mail inks to your own HTML documents.

Coming Next....

Congratulations! You have reached the end of this tutorial. Now you are ready to venture down the information superhighway and off into the cybersunset....

| Lesson Index | previous lesson "Descriptive Lists" |


Writing HTML Lesson 12: Address Footers and E-Mail Links
©1995 Maricopa Center for Learning & Instruction (MCLI)
Maricopa County Community College District, Arizona

The Internet Connection at MCLI is Alan Levine--}
Comments to levine@maricopa.edu