Im working on a webpage and dont know how to html the following scenario?

brian v

New member
I have 4 links that go across left to right.. name, members, bio, links
i want them to line up on the left side of the page and go from the top to the bottom not left to right... how do i enter this to have them line up that way.
 
Between your <body> tags:
<table>
<tr><td><a href="http://">Name</a></td></tr>
<tr><td><a href="http://">Members</a></td></tr>
<tr><td><a href="http://">Bio</a></td></tr>
<tr><td><a href="http://">Links</a></td></tr>
</table>

Where http:// is the url of the link ofc.
 
Back
Top