-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathImages.html
More file actions
27 lines (18 loc) · 775 Bytes
/
Images.html
File metadata and controls
27 lines (18 loc) · 775 Bytes
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
27
<!DOCTYPE html>
<html>
<body>
<h2>Image Maps</h2>
<p>Click on the computer, the phone, or the cup of coffee to go to a new page and read more about the topic:</p>
<img src="workplace.jpg" alt="Workplace" usemap="#workmap" width="400" height="379">
<map name="workmap">
<area shape="rect" coords="34,44,270,350" alt="Computer" href="Formatting.html">
<area shape="rect" coords="290,172,333,250" alt="Phone" href="Links.html">
<area shape="circle" coords="337,300,44" alt="Cup of coffee" href="Quotation.html">
</map>
<hr>
<img src="img5.jpg" alt="bootstrap" usemap="#workmap1" width="400" height="379">
<map name="workmap1">
<area shape="rect" coords="80,20,250,150" alt="bootstrap" href="Formatting.html">
</map>
</body>
</html>