Step 11: Add Contact Page
In this step, the web's contact page is added. It's a good idea to create a single page containing all of the contact information for your organization and then ensure that there's a link to the page on every page in the web. In the Tarmac Travel web this is achieved by placing a link to the contact page in the page footer.
There's no real technical surprises in the contact page. The table
is messy, but straightforward. The only new element is the
VALIGN field of the TD tag. The VALIGN
element specifies that the table element should float to the top of
its cell. In this case, the tag is useful to ensure that the
Address label appears level with the top of the address.
<TR>
<TD VALIGN="top"><STRONG>Address</STRONG></TD>
<TD VALIGN="top">
12345 Tarmac Road<BR>
Tarmac Flats SA 55555<BR>
Australia
</TD>
</TR>
That's all for this step. This is the last step in the content creation phase of this web's construction. The content of the web is now in place, and you should surf the web a bit now to get used to it. The remaining steps give the web a complete graphical makeover.
|