Nav bar
iWebBuddy.com - Website Design and Web Development Forum :: Web Design and Development :: Markup Languages and Styling
Page 1 of 1 • Share •
Re: Nav bar
I moved this topic to the right section because you posted in this forum, "Web Server".
Now, for your question. If I am correct, you are asking for a side navigation menu that should be placed to the left or right ( or even top ) of your html page.
You can simply do this with html tables,
Here is an example of this being done :
Copy and paste this into your html page, and the side that says, "Hello" , you can edit it and add in your hyper link. The "br" is just to use another line. On the side that says, "Everyone", that will be your content or anything you would like. So, the side of the table that says, "Hello", is the html side bar. You can customise it to suit your style,
Now, for your question. If I am correct, you are asking for a side navigation menu that should be placed to the left or right ( or even top ) of your html page.
You can simply do this with html tables,
- Code:
<table border="1" cellpadding="0" cellspacing="0" width="100%" height="1" >
<tr>
<td width="20%" valign="top">
Hello <br>
Hello <br>
Hello <br>
Hello <br>
</td>
<td width="80%" valign="top">
Everyone <br>
Everyone <br>
Everyone <br>
Everyone <br>
</td>
</tr>
</table>
Copy and paste this into your html page, and the side that says, "Hello" , you can edit it and add in your hyper link. The "br" is just to use another line. On the side that says, "Everyone", that will be your content or anything you would like. So, the side of the table that says, "Hello", is the html side bar. You can customise it to suit your style,




Marc- Administrator

Posts: 1119
iCoins: 2197
Forum Pet:

Permissions of this forum:
You cannot reply to topics in this forum













