<!DOCTYPE html>
<html>
<body>
<img id="img1" src="pic_htmltree.gif">
<img id="img2" src="pic_navigate.gif">
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML =
"The id of the first image is " + document.images[0].id;
</script>
</body>
</html>