<< .. Go to : : Schedule : : Exercise 4 : : Demo 4A : : Demo 4B : : Demo 4C : : Demo 4D : : Demo 4E : : Demo 4F : : All Class Demos .. >>

Exercise 4 Demo: Part A : Using Images on Your Webpage

This is the HTML you will need for Part A of Exercise 4.

Using Images

The image tag <img> , inserts images into your web page. However, by itself, it does nothing. It requires the attribute/value. src="filename".
It will look like this:

<img src="image.jpg" >

As you can see, the image tag is a self-closing tag. There is not a separate closing tag.

There are three types of image formats that browsers will read,
  .gif - use for graphics and small animations
  .jpg - use for most photographs
  .png - use for transparent or outlined image files

Image files must be formatted, saved and named correctly for them to display properly in a browser. Make sure the name you put in your HTML matches the name of the file EXACTLY, CAPs and lower case, or it won't work!

QUICK TIP: Short names with NO spaces work best. See the lecture for detailed information on these topics. Remember: We are not in English class here. Slam the words together to make the web work better.

BAD file naming: "A picture of my kitty.jpg"

GOOD file naming: "kitty.jpg"


More Image Attributes

To specify the exact size of an image in your page use these two attributes:

width="n" height="n"
where n=pixels

These attributes tell the browser how much page space to allow for an image so both the image and the text will load faster. These attributes can also be used to re-size an image, this is NOT recommended because it may distort the image or cause pixilization. It is slower to download, and may also cause printing problems.

The title attribute shows when the mouse hovers over the image. It is optional. Check it out by hovering over my dog's picture.

The last attribute alt provides a short description of the image. This description appears on screen while the image is loading and is also read aloud by voice-enabled browsers used by the sight impaired. It is now legally required to meet the web accessibility guidelines. It also gives people who have turned off the 'Display Graphics' option on their browser an idea of what they are missing. Is there anyone who still does that?

<img src="Stellasm.jpg" title="My puppy Stella" alt="my puppy" width="144" height="123" >

my puppy

For more about using Links go to Part B of Demo 4.

Go back to the Exercise 4 page.

© Claudia Faulk. Updated 9.17