Insert Images
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Accesing Images</title>
</head>
<body>
Image in Same Directory as this Web Page <img src="earth.jpg"/> <br>
Image in Different Directory than this Web Page <img src="images/moon.jpg"/> <br>
Image is somewhere on the Web <img src="http://tbn0.google.com/images?q=tbn:IXYQFh_APusTSM:http://www.bnsc.gov.uk/assets/channels/education/ae/sun_main.jpg"/> <br>
Change Image Width and Height <img src="earth.jpg" width="50px" height="100px"> <br>
Display alternated text if Image does not load <img src="jupiter.jpg" alt="Picture of Jupiter Not Found">
</body>
</html>
Link to this Page