1.
Image Insertion and Image Map creation for a Web page
Index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<title>Image Map creation</title>
</head>
<body>
<h1>Image Insertion</h1>
<img src="place.jpg" alt="Dow Hill School" width="460"
height="345">
<h2>Image Maps</h2>
<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="computer.html">
<area shape="rect" coords="290,172,333,250" alt="Phone"
href="phone.html">
<area shape="circle" coords="337,300,44" alt="Cup of
coffee" href="coffee.html">
</map>
</body>
</html>
Computer.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<title>Computer</title>
</head>
<body>
<h1>Computer</h1>
<img src="mac.jpg" alt="Mac" width="460" height="345">
<p>A computer is a device that can be instructed to carry out
arbitrary sequences of arithmetic or logical operations
automatically.</p>
</body>
</html>
Phone.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<title>Phone</title>
</head>
<body>
<h1>Phone</h1>
<img src="cellphone.jpg" alt="Cell Phone" width="460"
height="345">
<p>A telephone, or phone, is a telecommunications device that
permits two or more users to conduct a conversation when they are
too far apart to be heard directly.</p>
</body>
</html>
Co ee.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<title>Coffee</title>
</head>
<body>
<h1>Coffee</h1>
<img src="coffeehouse2.jpg" alt="Coffee" width="460"
height="345">
<p>Coffee is a brewed drink prepared from roasted coffee
beans, which are the seeds of berries from the Coffea plant.</p>
</body>
</html>
ff
OutPut: