What is this?

Obviously, images are graphics of any kind. They can be .gif, .jpg, .jpeg, .bmp, and most other graphic types. This tag allows you to put them on the page, put on borders, edit their sizes, etc.

1. Type <img.

2. (optional) Type border=#, where # is the width in pixels of the border around the image. If omitted, no border will be on the image.

3. (optional) Type height=#, where # is the height in either percentage of the original size of the image or an exact number of pixels.

4. (optional) Type width=#, where # the width in either percentage of the original size of the image or an exact number of pixels.

5. Type src=image.gif>, where image.gif is the url/location of the image you wish to appear.

When completed correctly, this tag will look like this in your code:

<img src=image.gif>
or
<img border=1 height=50% width=50% src=image.gif>

When completed correctly, this tag will look like this on your page:


or