Design Tips
Design Tips




Navigation Bars

Make your site's headers and footers without graphics and and lessen your visitors' load time by using a table for your links instead of graphics. And, by using Style Sheets you can rid yourself of those underlined links.


Home Theory Words Escapes Style Design




Copy and Paste!
Use this code for underlined links!


<TABLE Width=400 BGCOLOR="#800000"> <TR> <TD Width=60 BGCOLOR="#FFFFE1"><A Href="your.html">Home</A></TD> <TD Width=60 BGCOLOR="#FFFFE1"><A Href="your.html">Us</A></TD> <TD Width=60 BGCOLOR="#FFFFE1"><A Href="your.html">Links</A></TD> <TD Width=60 BGCOLOR="#FFFFE1"><A Href="your.html">Press</A></TD> <TD Width=60 BGCOLOR="#FFFFE1"><A Href="your.html">Mail</A></TD> <TD Width=60 BGCOLOR="#FFFFE1"><A Href="your.html">Fun</A></TD> </TR> </TABLE> For Links without underlines, add the following code right after the document's title. <HTML> <HEAD> <TITLE>Your Title</TITLE> <STYLE TYPE="text/css"> <!-- A:link { font-size: 18pt; font-family: "Courier New"; font-weight: bold; line-height: 18pt; text-decoration: none; color: black } --> </STYLE>