1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26<!DOCTYPE html>
<html>
<head>
<title>With Images</title>
</html>
<body>
<!-- Image with alternative text -->
<img src="path-to-image.jpg" alt="A detailed description of the image">
<!-- Form image button with alternative text -->
<form action="submitForm">
<input type="image" src="submit-button.jpg" alt="Submit Form">
</form>
<!-- Image map with hot spots and alternative text -->
<img src="image-map.jpg" alt="Description of the entire image" usemap="#mapname">
<map name="mapname">
<area shape="rect" coords="34,44,270,350" href="link1.html" alt="Description of the first link area">
<area shape="circle" coords="128,136,58" href="link2.html" alt="Description of the second link area">
</map>
</body>
</html>