for what you're wanting to do all you need to do is use the same menu bar on each page. (If I understand correctly) this is a very basic way to do it if you're new to html if you would prefer to do it with CSS you could do it that way too.
HTML Code:
<html>
<body>
<table>
<tr>
<td bgcolor="blue">
<a href="http://www.google.com"> Google </a> <br>
<a href="http://www.yahoo.com"> Yahoo </a> <br>
<a href="http://www.dogpile.com"> dogpile </a> <br>
</td>
<td>
here is where you put the body of the webpage
</td>
</tr>
</table>
</body>
</html>
like I said though this method is going to be really kinda sloppy and I doubt you'll be happy with the result but if you really want a navigation bar you should tackle a bit of CSS and it will help out alot.
Last edited by blackhawkpowers : 11-16-2006 at 12:50 PM.
|