html help

biferi

Daemon Poster
Messages
690
I use HTML code to make web pages and it works good I need help with image placement.

<center>
<img src="photo A2.jpg" width="550" alt="" border="0" align="">
</center>

The code Centers the image but if I type in RIGHT inplace of CENTER it goes to the left of the screen why??
 
why does it work for Center and that is it for anything other then center I have to use your html tags???
 
Because that's the way it is?

Code:
<img src="imagename.jpg" width="550" alt="" border="0" align="RIGHT">

That should align the picture to the right without using a DIV.
 
Back
Top Bottom