Posts: 5,935
Name: Adam for web page design, not program
Location: Toronto, Ontario, Canada
|
I'm not LadyNRed (I'm uglier and far less intelligent), but I think I can help you anyway...
http://css.maxdesign.com.au/listamatic/ <--- this will give you almost every possible way to do a navigation bar, including 100 you and I haven't ever thought of before.
As far as naming pages goes, the good news is that your host, Lunarpages, supports a technology called server side includes (or SSI for short). Instead of calling your pages .html, you call them .shtml . Your host still should be able to recognize index.shtml as your default file, although you may need to delete the index.html file off your server first (this depends on the order in which hosts recognize default pages.)
To use a server-side include, check out this tutorial: http://www.smartwebby.com/web_site_d...e_includes.asp . The simplified explanation is that you add an <!--#include file="header.shtml"--> tag and it merges the include file with your page file to create one HTML file. Browsers, search engine spiders, and people can't tell which portion is the header, which is the footer, and which is the body just from looking at the code (unless you use comment tags within your include files to indicate as such). It's one big page of HTML goodness.
Pretty cool, eh?
|