Create a webpage in html on image of basic geometric shapes of circle rectangle square and triangle clicking on particular shape should open on different web page
Answers
Answer:
HTML Image Maps
HTML Image MapsWith HTML image maps, you can create clickable areas on an image.
HTML Image MapsWith HTML image maps, you can create clickable areas on an image.Image Maps
HTML Image MapsWith HTML image maps, you can create clickable areas on an image.Image MapsThe HTML <map> tag defines an image map. An image map is an image with clickable areas. The areas are defined with one or more <area> tags
Explanation:
<img src="workplace.jpg"
alt="Workplace"
usemap="#workmap">
usemap="#workmap"><map name="workmap">
usemap="#workmap"><map name="workmap"> <area shape="rect"
coords="34,44,270,350"
alt="Computer"
href="computer.htm">
href="computer.htm"> <area shape="rect"
coords="290,172,333,250"
alt="Phone"
href="phone.htm">
href="phone.htm"> <area shape="circle"
coords="337,300,44"
alt="Coffee"
href="coffee.htm">
href="coffee.htm"></map>