View Single Post
  #2 (permalink)  
Old Apr 16th, 2008, 13:58
unitedcraig's Avatar
unitedcraig unitedcraig is offline
SuperMember

SuperMember
Join Date: Oct 2007
Location: Stockport
Age: 17
Posts: 825
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Linking the pages

What you do is create a navigation bar that links all your pages together, for example

HTML: Select all
<ul>

<li><a href="index.html">Home</a></li>
<li><a href="songs.html">Songs</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>

</ul>

You can then style this using CSS to get the look that you want.

Is that what you mean?
__________________
Reply With Quote