|
Now, using the image
align tag, I can also choose where the image is placed on the page. For
instance, I can line it up on the right:
<img align=right src="floyd.gif">
Which - surprise! -
pushes it to the right:
Centreing an image is
a little trickier, because
<img align=centre>
doesn't work on every
browser. Instead, you'll have to first centre the paragraph, with
<p align=centre>, and then place the
image.
So, to centre our
little monkey, we'll write:
<p align=centre><img
src="floyd.gif">
And it will appear
like this:

|