Skip to content

rishsv/NearMe

 
 

Repository files navigation

Ex04 Places Around Me

Date: 22/09/2025

AIM

To develop a website to display details about the places around my house.

DESIGN STEPS

STEP 1

Create a Django admin interface.

STEP 2

Download your city map from Google.

STEP 3

Using <map> tag name the map.

STEP 4

Create clickable regions in the image using <area> tag.

STEP 5

Write HTML programs for all the regions identified.

STEP 6

Execute the programs and publish them.

CODE

<!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>

OUTPUT

alt text alt text alt text

RESULT

The program for implementing image maps using HTML is executed successfully.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 52.6%
  • HTML 47.4%