linked_image.html 685 Bytes
Newer Older
jatuporn Tonggasem's avatar
jatuporn Tonggasem committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!DOCTYPE html>
<html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html">
<title>Linking with an image</title>
</head>
<body>
<img style="width: 644px; height: 41px;" alt="banner" src="banner.gif"><br>
<a id="link" href="./resultPage.html">Click here for next page</a><br>
<a id="linkWithEnclosedImage" href="./resultPage.html"><img id="enclosedImage" src="./banner.gif"></a><br/>
<a id="linkToAnchorOnThisPage" href="#link">link to other link</a><br/>
<a id="justanotherLink" href="./resultPage.html">Just another link.</a><br/>
<a id="linkWithExtraEnclosedImage" href="./resultPage.html"><div><img id="extraEnclosedImage" src="./banner.gif"></div></a><br/>
</body>

</html>