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<!DOCTYPE html>
<html>
<head>
<title>Image Page</title>
</head>
<body>
<!-- Image without alt attribute -->
<img src="flower.jpg">
<!-- Form image button without alt attribute -->
<form action="submitForm">
<input type="image" src="submit-button.jpg">
</form>
<!-- Image map hot spots without alt attribute -->
<img src="planets.jpg" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.html">
<area shape="circle" coords="90,58,3" href="mercur.html">
<area shape="circle" coords="124,58,8" href="venus.html">
</map>
</body>
</html>