can some one help me with html please?

dente de requin

New member
in html how do i place elements side by side?

you would see at the bottom of a page there are words like contact us home about us and so on anyway all the words are anchor tag-ed i take it and are along side each other on a horizontal line spaced a certain distance apart amd i am trying to work out how exactly to achieve this?

could some one help me please?

thanks
 
three ways. One, the imprecise way:

<a href = home.html>Home</a> <a href=contact.html>Contact us</a>

This way uses links and spaces.

The table way ( I use this)

Make a table with say 6 cells. In one cell, link to home. In the next, link to contact. Center the text in each cell then center the table. The code is too long to go into so either google it or use a WYSIWYG (Wgat You See Is What You Get) (Like word. My favorite is KompoZer. Google it.)

The third way is to use CSS. Once again, too involved. Google it.
 
Back
Top