Add An Image
To add an image to your page, simply place this code anywhere you want the image to appear.
Change whats in CAPSLOCK to your info
<img src="URL HERE">
You can also add little specifications to your image. Such as, no border:
<img src="URL HERE" border="0">
Or, you can make text align to either side of it by doing this:
<img src="URL HERE" align="left or right">
Wait! Say you want to be valid..
Say you're shooting for being a completely valid XHTML site, then how do you align your image? It's simple. Just use your .css page to add the attribute of align: (left, center, right); (Pick just one!) to your image properties.This part will go into your stylesheet page.
img { align: left;}
Whereas this will go into your XHTML document.
<img src="" alt="" />





