Inserting and Aligning Images
Inserting an image is one of the most basic html tags anyone should know! All it is is:
<img src="http://imageurl.com/image.jpg">
Easy! This shows up as so:

Aligning Images
To align pictures on a page, you can use either one of the following tags:
align=”left” OR
align=”right”
So with the image tag we had earlier, we just incorporate this tag into the html:
<img src="http://imageurl.com/image.jpg" align="right">
If you want to center your image, simply type <center> before the image tag, and </center> after it to close it off:
<img src="http://imageurl.com/image.jpg" align="right">
Similarly, you can also use the top, middle and bottom tags to specify how the text is positioned next to the image:
align=”top” OR
align=”middle” OR
align=”bottom”
Using these tags would produce the following results:
Align=”top”
What type of bird is this?
Align=”middle”
What type of bird is this?
Align=”bottom”
What type of bird is this?
See also...
iiNet SUED for allowing illegal file sharing!?!?! Its the end of the internet as we know it... 

















Love this post?