Lesson Six

Objectives:

  • Learn to Turn a Picture into a Link

Learning HTML


Now that you can make a link, let's make a picture work as a link. When the picture is a link, you can click right on the picture and go to another page.

To make this work, you will have to combine two tags: the the<a href>and the <img src>tag.

The code looks like this:

<a href="two.htm"><img src="picture.jpg"></a>
Now you're ready for your next assignment. Assignment #6.

<< Back