
Check all links when creating the document and review the document periodically to ensure that all links continue to be valid. Library Technology will periodically run a link checking utility on all files on Public and StaffWeb servers and notify staff of broken links that are found on their pages. Library staff should repair broken links promptly once notified.
Relative versus Absolute Links.
<a href="linkedpage.html">A relative Link</a>
<a href="/otherdirctory/linkedpage.html">A relative Link</a>
<a href="http://www.anotherserver.edu/directory/newpage.html">
An Absolute Link</a>
Default Pages in Web Directories
The default page is the one that displays in a browser when the user
does not specify an HTML file as part of the URL.
The use of default pages makes it easier for users, since they
only have to enter a directory name to get to the main page
of a Web server or the main page within a subfolder.
For both the StaffWeb and the Public Web, the
default file name within any directory should be
For example, when a user enters the URL
http://staffweb.library.vanderbilt.edu/, a file called
http://staffweb.library.vanderbilt.edu/index.htm displays.
The use of default pages will make it easier for the users of our Web servers
to find resources.
HTML Coding Standards
In general, don't assume that if the page looks right on your browser that it will
look correct with others. Browsers vary considerably in the ways that they
forgive errors in HTML coding or interpret ambiguous coding. To ensure a
consistent look to your pages, it is important to follow correct coding
practices.
The applications that generate HTML from a graphical environment such as
Microsoft FrontPage do not always generate correct HTML, or they may introduce
extraneous coding that may not always function as intended. It is a good
practice to examine the HTML generated by these applictions and check
that the code is correct. Especially for pages that will operate from the
public Web server, it is a good practice to test the pages with both Netscape's
and Microsoft's browsers.
Last Updated February 26, 1999.
index.html.
When a user enters http://staffweb.library.vanderbilt.edu/libtech
the file http://staffweb.library.vanderbilt.edu/libtech/index.htm displays.
<! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
and the document must end with
</html>
<title>Heard Library Staff Resources
</title>
<body>
and a
</body>
<ul>
end it with a </ul>
<ol>
end it with a </ol>
Back