To develop a website to display details about the places around my house.
Create a Django admin interface.
Download your city map from Google.
Using <map> tag name the map.
Create clickable regions in the image using <area> tag.
Write HTML programs for all the regions identified.
Execute the programs and publish them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- Image Map Generated by http://www.image-map.net/ -->
<img src="Screenshot 2025-09-22 151606.png" usemap="#image-map">
<map name="image-map">
<area target="" alt="NAMMA OORU RAMNAD UH" title="NAMMA OORU RAMNAD UH" href="ramnad.html" coords="519,428,687,532" shape="rect">
<area target="" alt="PAMBAN" title="PAMBAN" href="pamban.html" coords="1321,633,71" shape="circle">
<area target="" alt="UTHIRAKOSAMANGAI" title="UTHIRAKOSAMANGAI" href="uthirakosamangai.html" coords="322,536,500,632" shape="rect">
</map>
</body>
</html>
The program for implementing image maps using HTML is executed successfully.


