|
||||||||||||
Web Services Home |
|
Combining Links and ImagesMany times you may want to have an image that is linked, so that if someone clicks the image, the person will be taken to another page. This is rather simple- you just need to place the IMG tag within the A HREF tags. (<a href="location_of_link"><img src="location_of_image"></a>). <a href="http://www.winona.edu/athletics"><img src="http://www.winona.edu/warrior_head.gif" alt="WSU Warrior Head"></a> Click on the image to go to the Winona State Athletics page. **Putting together everything we have learned so far, you could produce an HTML document that looks like this: <html>
<head>
<body> </body> </html> To view this web page, click here.
|