Web Assignment
Web Assignment
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>
<h2>Image Maps</h2>
<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">
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">
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">