|
Aligning Images <img align=?> aligns an image Using the image align tag, you can control where the image is placed on the page. For instance, you can line it up on the left: <img src="bronze.gif" align=left> Which pushes it to the left:
Or you can line it up on the right: <img src="bronze.gif" align=right> Which pushes it to the right: Centering an image is a little trickier, because <img align=center> doesn't work on most browsers. Instead, you'll have to first center the paragraph, with <p align=center> (even if you don't have any text), and then place the image. So, to center the pic, we'd write: <p align=center><img src="bronze.gif"></center> And it would appear like this:
Return to Help Index
|