html picture alignment question?

centurion216

New member
in my program this HTML line does not center the image...
why? how do i center it?

<img src="T35_1px220.jpg" align="right" alt="T35 on a Moscow street" />
 
Just delete ' align="right" ' and add your script between the tags: <center> </center>

It should look like this:

</center><img src="T35_1px220.jpg" alt="T35 on a Moscow street" /></center>
 
Back
Top