<class home>  <graphics>   <back   next>

Graphics For the Web: getting the image onto an html page

Image Tag: linking a thumbnail of the image to a larger version
you can link a small thumbnail to a bigger image that will open by itself in a new page.
<a href="big image"><img src="small image" /></a>


example>>>image linked to a bigger version of itself

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
<title>Pony Pony Pony</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
Here is my pony<p>
<a href="ponybig.gif"><img src="pony.gif" width="100" height="90" /></a>
</p>
</body>
</html>