Let's say you want your graphic to have a border of 2, be 100 x 250 pixels (height x width) and have an alt tag:
<img src="images/apple.gif border="5" alt="This is my apple">
Please note that it does not matter what order you put the attributes in (border, alt, etc.). Just make sure you do not leave out any of the punctuation.
If your graphic does not show up and you receive the "broken image" icon, check the following:
Linking images is helpful if you have buttons or banners on your site and you want the visitor to be taken to another web page or site when they click on the image. To accomplish this, use the following code:
<a href="http://www.the_linked_site.com"> <img src="images/apple.gif">
The first part of the code tells the browser which site to go to and the second part, of course, tells it where the image is located.
Lesson # 11 : HTML Tutorial - Creating Tables