Once you have the image you want to use you can insert it into your web page. You will be using the image tag.
Next you'll need to do is upload the graphic to your web server. When you upload the graphic, make sure you pay attention to what folder you' reputting it into because that will affect how you write the HTML.
Let's say you upload the graphic called "apple.gif" to your "images" folder on your web server. The image folder is located inside your "root" directory.
Your HTML code will look like this:
<img src="images/apple.gif">
Now let's say you have uploaded the graphic to the "fruit" folder/directory that is located inside of the images folder then the code would appear as:
<img src="images/fruit/apple.gif">
Lesson # 9 : HTML Tutorial - The Alt Tag