## EX.NO: 03 ### HTML Program to use Image Map ### Aim To create a web page using HTML that demonstrates embedding an image map using the provided image file `logo.svg`, defining hotspot regions, and linking the hotspots to relevant information when clicked. ### Algorithm 1. Begin the document with the `` declaration and create the basic structure using ``, ``, and `` tags. 2. Inside the `` section: * Insert an `` element with the source set to `"logo.svg"`. * Use the `usemap` attribute in the `` element to associate the image with a map named `"logomap"`. 3. Create a `` element and assign it the name `"logomap"` using the `name` attribute. 4. Inside the `` element, define at least two hotspot regions using `` elements. 5. For each `` element: * Specify a `shape` attribute (such as `rect`, `circle`, or `poly`) of your choice. * Specify appropriate `coords` values to define the clickable region. * Add the `href` attribute and set it to `https://drmgrdu.codetantra.com/`. * Add the `target` attribute and set it to `"_blank"`. ### Program HTML ``` HTML using Image Map Logo Image ``` ### OUTPUT The webpage displays the provided image with multiple hotspot regions. Clicking a hotspot navigates to the specified webpage. ### Result Thus, the HTML program to create a webpage using an image map with multiple hotspot regions that navigate to the specified webpage when clicked is executed successfully, and the output is verified.