<class home>  <graphics>   <back   next>

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

Image Tag: low source
you can have a low source image load while the user waits for the page to load.
<img src="your image" lowsrc="a lower source image" />


example>>>image with a low source image

<!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>
<img src="pony.gif" lowsrc="pony2.gif" />
</p>
</body>
</html>