HTML Images:
Adding images to a web page is very easy and adds a lot visual stimulation for
your users. You want to use images that are small in size and are optimized for
the web.
For SEO enchancements, include and id that describes the image, include
an alt tag that describes the image, and name the image file with a descriptive
title.
Here is the HTML code for adding images to your site:
<img src="images/lovepic.jpg" alt="Two people in love" />
You can also use background images and border images to customize your page.
There are a lot of things you can do to your images to make them more appealing
as well as setting the exact position you want. To learn more
see CSS for images.
Careful with the CSS!
Don't add a space between img and the .classname!!!
img.player {border:dashed 2px red;} <<This WORKS!
AND
img .player {border:dashed 2px red;} << This does NOT WORK!!
are NOT the same!
img will not format an asp.net control <asp:image>
BUT
Image or img WILL format an html image!