Lesson 5

IMAGES

The common format for images on a web page are .gif and .jpg. You can create these using programs such as Adobe Photoshop, and Macromedia's Fireworks. To create animations, you can use Macromedia's Flash or Director.

As I have shown before, you call the image using the command <img src="image.gif">
You can add other details within that image call command. For instance:

<img src="images/image.gif" align="right width="100" height="50">

This tells the browser to get the image called image.gif from the image directory, and place it on the right side of the page at the size 100 pixles X 50 Pixles.

Simple Enough? It really will seem that way once you play around with the code commands.