Use the <img> tag to link an image to your page. This is one of the few tags that does not have a closing tag. Use src= to specify the filename (source) of the image, which should be a *.jpg or *.gif file. Use width= and height= (optional) to specify the size. Use alt= to specify what text should appear when readers hold the mouse over the image.

<html>
<head>
<title>Trees</title>
</head>
<body>
<table width='600' bgcolor='white' border='1'>
<tr><td>
<h1>About Trees</h1>

<p>Take a camera, a sketchbook, and a field guide 
with you when you go on a hike.  Look closely at the trees.  
Use the field guide to identify the trees.  Use your sketchbook 
to draw pictures of the trees.  Take some pictures with 
the camera.</p>

<img src='elmleaf.jpg' 
width='200' height='150' alt='Elm Leaf'>

</td></tr>
</table>
</body>
</html>

Next