GithubHelp home page GithubHelp logo

ex-04-webtech_imagemap's Introduction

Places Around Me

Aim:

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

Design Steps:

Step 1

create 'ex04'directory

Step 2

create project'myproj' using "django-admin startproject myproj"

Step 3

create myapp using 'python3 manage.py startapp myapp'

Step 4

create image map using image maps.com

Step 5

create neccessary webpages for the places on the map

Step 6

push to README.md and push to Github repository

Code:

index.html:

<!DOCTYPE html>
<html lang="en">
<head>
  <title>My CITY</title>
</head>
<body bgcolor="yellow">
  <h1 align="center">
    <font color="red"><b>NELLORE</b></font>
  </h1>
  <hr size="3" color="red">

  <div align="center">
    <img src="c:\Users\admin\OneDrive\Pictures\Screenshots\Screenshot 2023-11-21 210013.png"  height="300px" width="500px">
  </div>

</body>
</html>

school.html:

<!DOCTYPE html>
<html lang="en">
<head>
  <title>SCHOOL</title>
</head>
<body bgcolor="yellow">
  <h1 align="center">
    <font color="red"><b>NELLORE</b></font>
  </h1>
  <h2 align="center">
    <font color="blue"><b>KENDRIYA VIDYALAYA SCHOOL</b></font>
  </h2>
  <hr size="3" color="red">

  <div align="center">
    <img src="c:\Users\admin\OneDrive\Pictures\Screenshots\Screenshot 2023-11-21 210013.png"  height="300px" width="500px">
  </div>

  <p align="justify">
    <font face="Courier New" size="5">
      <b>Kendriya Vidyalaya Nellore was established in the year 2010. KV Nellore is one of the popular KV schools run by Kendriya Vidyalaya Sangathan (KVS) under the Ministry of Education (MOE). Kendriya Vidyalaya Nellore is situated in Rajeev Swagruha Aptts, Kothuru, Podalakur Road, Ak Nagar, PO-Nellore, Andhra Pradesh 524004. KV Nellore is a Co-educational school equipped with proper facilities and well-maintained infrastructure for the students and teachers which develops a better environment conducive to learning.</b>
    </font>
  </p>
</body>
</html>

temple.html:

<!DOCTYPE html>
<html lang="en">
<head>
<title>SRI RAJA RAJESHWARI TEMPLE</title>
</head>
<body bgcolor="orange">
<h1 align="center">
<font color="red"><b>NELLORE</b></font>
</h1>
<h2 align="center">
<font color="blue"><b>SRI RAJA RAJESHWARI TEMPLE</b></font>
</h2>
<hr size="3" color="red">
<div align="center">
    <img src="c:\Users\admin\OneDrive\Pictures\Screenshots\Screenshot 2023-11-21 211004.png"  height="300px" width="500px">
  </div>
<p align="justify">
<font face="Georgia" size="5">
<b>
    Sri Raja Rajeshwari Temple is a famous Hindu temple dedicated to Goddess Mother Sri Rajarajeswari. The temple is located in Durgamitta, Nellore district of Andhra Pradesh state. The presiding deity in this temple is Sri Rajarajeswari Ammavaru.

Nellore Rajarajeswari Temple is famous for Rahu Kala pooja on Friday. Especially, lady devotees worship Godess Rajarajeswari by lighting up the deepam (lamp) and perform pooja.
</b>
</font>
</p>
</body>
</html>

hotel.html:

<!DOCTYPE html>
<html lang="en">
<head>
<title>HOTEL</title>
</head>
<body bgcolor="pink">
<h1 align="center">
<font color="red"><b>NELLORE</b></font>
</h1>
<h2 align="center">
<font color="blue"><b>HOTEL RESHMA DUM BIRIYANI,</b></font>
</h2>
<hr size="3" color="red">
<div align="center">
    
        <img src="c:\Users\admin\OneDrive\Pictures\Screenshots\Screenshot 2023-11-21 211520.png"  height="300px" width="500px">
      
  </div>
<p align="justify">
<font face="Arial" size="5">
<b>
    Established in the year 2017, Hotel Reshma in Vedayapalem, Nellore is a top player in the category Mughlai Delivery Restaurants in the Nellore. This well-known establishment acts as a one-stop destination servicing customers both local and from other parts of Nellore. 
</b>

</font>
</p>
</body>
</html>

mart.html:

<!DOCTYPE html>
<html lang="en">
<head>
<title>MART</title>
</head>
<body bgcolor="yellow">
<h1 align="center">
<font color="red"><b>NELLORE</b></font>
</h1>
<h2 align="center">
<font color="blue"><b>D MART</b></font>
</h2>
<hr size="3" color="red">
<div align="center">
    <img src="c:\Users\admin\OneDrive\Pictures\Screenshots\Screenshot 2023-11-21 212301.png"  height="300px" width="500px">
  </div>
<p align="justify">
<font face="Tahoma" size="5">
    DMart is a one-stop supermarket chain that aims to offer customers a wide range of basic home and personal products under one roof. Each DMart store stocks home utility products - including food, toiletries, beauty products, garments, kitchenware, bed and bath linen, home appliances and more - available at competitive prices that our customers appreciate. Our core objective is to offer customers good products at great value. 
</font>
</p>
</body>
</html>

mall.html:

<!DOCTYPE html>
<html lang="en">
<head>
<title> MGB FELICITY MALL</title>
</head>
<body bgcolor="lime">
<h1 align="center">
<font color="red"><b>NELLORE</b></font>
</h1>
<h2 align="center">
<font color="blue"><b>MGB MALL</b></font>
</h2>
<hr size="3" color="red">
<div align="center">
    <img src="c:\Users\admin\OneDrive\Pictures\Screenshots\Screenshot 2023-11-21 212759.png"  height="300px" width="500px">
  </div>
<p align="justify">
<font face="Georgia" size="5">
<b>The MGB Felicity Mall at Dargamitta, Nellore developed by the MGB Group. Shop from brands such as Big Bazaar, Max Fashion, Reliance Footprint, Soch, Babyoye, Madina, US.Polo.Assn, Naidu Hall, Van Heusen. Dine out at McDonalds, Cream & Stone, Dominos, Food Fusion Food Court, Barista. Watch the latest movies at the Cinema, a 5 screen multiplex.
</b>
</font>
</p>
</body>
</html>

Output:

index.html: image school.html: image temple.html: image hotel.html: image mart.html: image mall.html: image

Result:

image-maps has been created succesfully

ex-04-webtech_imagemap's People

Contributors

hariveeraprasad-2006 avatar karthi-govindharaju avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.