0% found this document useful (0 votes)
2 views

Web Application Project-1

This document outlines a web application project focused on Wildlife National Parks, submitted by Anushka Pandey for the AISSCE. It includes sections on HTML, CSS, and JavaScript, detailing their roles in web development, along with features of the wildlife website and its structure. The project also acknowledges the support received from teachers, parents, and friends during its completion.

Uploaded by

Aradhya Verma
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Web Application Project-1

This document outlines a web application project focused on Wildlife National Parks, submitted by Anushka Pandey for the AISSCE. It includes sections on HTML, CSS, and JavaScript, detailing their roles in web development, along with features of the wildlife website and its structure. The project also acknowledges the support received from teachers, parents, and friends during its completion.

Uploaded by

Aradhya Verma
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 65

WEB APPLICATION PROJECT

SESSION – 2021-2022
Wildlife National Parks
In Partial Fulfilment Of The
Requirements Of The All India Senior
Secondary Certificate Examination
(AISSCE)

Submitted To : Submitted By :
Mrs. Eti Joshi Ma’am Anushka Pandey
Certificate
This is to certify that Anushka Pandey of class
XII of Delhi Public School, Indore has completed
this project under my guidance, as per the
requirement of CBSE. She has taken keen
interest and has shown utmost sincerity while
collecting and analysing all the relevant
information required to prepare this project on
Wildlife National Parks. It is further certified
that this project is individual work of the
student. She has completed her project up to my
satisfaction.

Signature of Teacher Signature of External

School Stamp Signature of Principal


Acknowledgement
I extend my gratitude towards my
Principal Mr. Ajay K. Sharma Sir for the
moral support extended during the tenure
of the project.

I am extremely thankful and pay my


gratitude to my teacher Mrs. Eti Joshi for
her valuable guidance and support during
the completion of this project.

I also acknowledge with a great sense of


reverence, my gratitude towards my
parents and friends for their valuable
suggestions given to me in completing this
project.

Without active guidance, help,


cooperation and encouragement of all
these people, I wouldn’t have completed the
project on time.
INDEX

S.NO PARTICULARS
1 HTML
2 CSS
3 JS
4 FEATURES OF WILDLIFE WEBSITE :
• Home page
• Kanha national park page
• Bandhavgarh national park page
• Panna national park page
• Pench national park page
• Madhav national park page
• Contact us page
• About us page
• Form page
5 SOURCE CODE
6 OUTPUT
7 CONCLUSION
8 FUTURE ENHANCEMENTS
9 BIBLIOGRAPHY
HTML
HTML stands for Hyper Text Markup Language

HTML is the standard markup language for Web pages

HTML elements are the building blocks of HTML pages

HTML elements are represented by <> tags

HTML Elements
An HTML element is a start tag and an end tag with content in between:

<h1>This is a Heading</h1>

Start tag Element content End tag

<h1> This is a Heading </h1>

<p> This is paragraph. </p>

HTML Attributes
• HTML elements can have attributes
• Attributes provide additional information about the element
• Attributes come in name/value pairs like charset="utf-8"
A Simple HTML Document
<!DOCTYPE html>
<html lang="en">

<meta charset="utf-8">
<title>Page Title</title>

<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>

</html>

HTML elements are the building blocks of HTML pages.

• The <!DOCTYPE html> declaration defines this document to be HTML5


• The <html> element is the root element of an HTML page
• The lang attribute defines the language of the document
• The <meta> element contains meta information about the document
• The charset attribute defines the character set used in the document
• The <title> element specifies a title for the document
• The <body> element contains the visible page content
• The <h1> element defines a large heading
• The <p> element defines a paragraph
• The HTML document itself begins with <html> and ends with </html>.
• The visible part of the HTML document is between <body> and </body>.

HTML Headings
HTML headings are defined with <h1> to <h6> tags.

<h1> defines the most important heading. <h6> defines the least important
heading:

1) HTML paragraphs are defined with <p> tags


2) HTML links are defined with <a> tags
The link's destination is specified in the href attribute.

Example
<a href="https://www.w3schools.com">This is a link</a>
3) HTML images are defined with <img> tags.

The source file (src), alternative text (alt), width, and height are provided as
attributes:

4) HTML lists are defined with <ul> (unordered/bullet list)


or <ol> (ordered/numbered list) tags, followed by <li> tags (list items)

5) An HTML table is defined with a <table> tag.

Table rows are defined with <tr> tags.

Table headers are defined with <th> tags. (bold and centered by default).

Table cells (data) are defined with <td> tags

CSS
CSS stands for Cascading Style Sheets

CSS describes how HTML elements are to be displayed

CSS Example
<style>

body {background-color:lightblue; text-align:center;}


h1 {color:blue; font-size:40px;}
p {font-family:verdana; font-size:20px;}

</style>

CSS Syntax
A CSS rule consists of a selector and a declaration block:
The selector points to the HTML element to style (h1).

The declaration block (in curly braces) contains one or more declarations
separated by semicolons.

Each declaration includes a CSS property name and a value, separated by a


colon.

In the following example all <p> elements will be center-aligned, red and
have a font size of 32 pixels:

External style sheets are linked to HTML pages with <link> tags

JavaScript

JavaScript is the Programming Language for the Web.

JavaScript can update and change both HTML and CSS.

JavaScript can calculate, manipulate and validate data.

JavaScript Variables
JavaScript variables are containers for storing data values.

JavaScript variables can be:

• Numbers
• Strings
• Objects
• Arrays
• Functions
JavaScript Numbers
JavaScript has only one type of number. Numbers can be written with or
without decimals.

All numbers are stored as double precision floating point numbers.

The maximum number of decimals is 17, but floating point is not always
100% accurate

JavaScript Strings
Strings store text. Strings are written inside quotes. You can use single or
double quotes

The length of a string is found in the built in property length

JavaScript Objects
Objects are variables too. But objects can contain many values.

This code assigns many values (Fiat, 500, white) to a variable

JavaScript Arrays
JavaScript arrays are used to store multiple values in a single variable.

Example
var cars = ["Saab", "Volvo", "BMW"]

JavaScript Functions
A JavaScript function is a block of code designed to perform a particular task.

A JavaScript function is executed when "something" invokes it (calls it).

JavaScript Can Change HTML Content


One of many JavaScript HTML methods is getElementById().This example uses the
method to "find" an HTML element (with id="demo") and changes the element content
(innerHTML) to "Hello JavaScript"
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

<title>WEB APPLICATION PROJECT</title>

<style type="text/css">

.auto-style1 {

font-family: "Bookman Old Style";

color: #FFFFFF;

.auto-style2 {

text-align: center;

.auto-style3 {

text-align: left;

.auto-style4 {

font-family: "Franklin Gothic Heavy";

font-size: large;

.auto-style5 {

text-align: left;

font-family: "Franklin Gothic Heavy";

font-size: large;

color: #FF00FF;

.auto-style7 {

font-family: "Franklin Gothic Heavy";

text-decoration: underline;

font-size: large;

.auto-style8 {
font-size: xx-large;

.auto-style9 {

text-align: center;

font-family: "Lucida Fax";

.auto-style10 {

background-color: #0000FF;

.auto-style12 {

margin-top: 0px;

.auto-style13 {

text-align: center;

border-bottom-style: solid;

border-bottom-width: 1px;

padding-bottom: 1px;

.auto-style14 {

background-color: #E7FF00;

.auto-style15 {

font-family: "Bookman Old Style";

color: #0000FF;

.auto-style16 {

font-size: xx-large;

font-weight: bold;

.auto-style18 {

text-align: left;

color: #FFFFFF;

}
</style>

<script type="text/javascript">

<!--

function FP_preloadImgs() {//v1.0

var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();

for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }

function FP_swapImg() {//v1.0

var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2;


n<args.length;

n+=2) { elm=FP_getObjectByID(args[n]); if(elm) {


doc.$imgSwaps[doc.$imgSwaps.length]=elm;

elm.$src=elm.src; elm.src=args[n+1]; } }

function FP_getObjectByID(id,o) {//v1.0

var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);

else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;

if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)

for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }

f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;

for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }

return null;

// -->

</script>

</head>

<body
onload="FP_preloadImgs(/*url*/'button3.jpg',/*url*/'button4.jpg',/*url*/'button6.jpg',/
*url*/'button7.jpg',/*url*/'button9.jpg',/*url*/'buttonA.jpg',/*url*/'button15.jpg',/*url*/
'button16.jpg',/*url*/'button18.jpg',/*url*/'button19.jpg',/*url*/'button1B.jpg',/*url*/'b
utton1C.jpg',/*url*/'button49.jpg',/*url*/'button4A.jpg',/*url*/'button4C.jpg',/*url*/'but
ton4D.jpg',/*url*/'button59.jpg',/*url*/'button5A.jpg')">

<div class="auto-style13">

<div class="auto-style3">

<div class="auto-style2">

<p style="width: 1119px" class="auto-style1"><span class="auto-style10"><strong>


&nbsp;This website will help you know about the wildlife national parks.

</strong></span></p>

<p style="width: 1119px" class="auto-style15"><span class="auto-style10">

<strong><span class="auto-style14">Click on the name buttons to know


more.</span></strong></span></p>

<u>

<font color="red"><a href="HOME%20PAGE.html"><strong>

<img id="img1" alt="HOME" height="20"


onmousedown="FP_swapImg(1,0,/*id*/'img1',/*url*/'button4.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img1',/*url*/'button2.jpg')"
onmouseover="FP_swapImg(1,0,/*id*/'img1',/*url*/'button3.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img1',/*url*/'button3.jpg')" src="button2.jpg"
style="border: 0" width="100" /></strong><!-- MSComment="ibutton" fp-style="fp-
btn: Embossed Capsule 2" fp-title="HOME" --></a></font></u><font color="red"><a
href="KANHA%20NATIONAL%20PARK.html"><img id="img2" alt="KANHA "
height="20" onmousedown="FP_swapImg(1,0,/*id*/'img2',/*url*/'button7.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img2',/*url*/'button5.jpg')"
onmouseover="FP_swapImg(1,0,/*id*/'img2',/*url*/'button6.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img2',/*url*/'button6.jpg')" src="button5.jpg"
style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn:
Embossed Capsule 4" fp-title="KANHA " --></a><a href="BANDHAVGARH.html"><img
id="img3" alt="BANDHAV" height="20"
onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/'buttonA.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/'button8.jpg')"
onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/'button9.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/'button9.jpg')" src="button8.jpg"
style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn:
Embossed Capsule 1" fp-title="BANDHAV" --></a><a href="PANNA.html"><img
id="img4" alt="PANNA" height="20"
onmousedown="FP_swapImg(1,0,/*id*/'img4',/*url*/'button16.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img4',/*url*/'button14.jpg')"
onmouseover="FP_swapImg(1,0,/*id*/'img4',/*url*/'button15.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img4',/*url*/'button15.jpg')" src="button14.jpg"
style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn:
Embossed Capsule 3" fp-title="PANNA" --></a><a href="PENCH.html"><img id="img5"
alt="PENCH" height="20"
onmousedown="FP_swapImg(1,0,/*id*/'img5',/*url*/'button19.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img5',/*url*/'button17.jpg')"
onmouseover="FP_swapImg(1,0,/*id*/'img5',/*url*/'button18.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img5',/*url*/'button18.jpg')" src="button17.jpg"
style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn:
Embossed Capsule 5" fp-title="PENCH" --></a><a href="MADHAV.html"><img
id="img6" alt="MADHAV" height="20"
onmousedown="FP_swapImg(1,0,/*id*/'img6',/*url*/'button1C.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img6',/*url*/'button1A.jpg')"
onmouseover="FP_swapImg(1,0,/*id*/'img6',/*url*/'button1B.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img6',/*url*/'button1B.jpg')" src="button1A.jpg"
style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn:
Embossed Capsule 8" fp-title="MADHAV" --></a><img id="img7" alt="CONTACT"
height="20" onmousedown="FP_swapImg(1,0,/*id*/'img7',/*url*/'button4A.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img7',/*url*/'button48.jpg')"
onmouseover="FP_swapImg(1,0,/*id*/'img7',/*url*/'button49.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img7',/*url*/'button49.jpg')" src="button48.jpg"
style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn:
Embossed Capsule 9" fp-title="CONTACT" --><img id="img8" alt="ABOUT US"
height="20" onmousedown="FP_swapImg(1,0,/*id*/'img8',/*url*/'button4D.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img8',/*url*/'button4B.jpg')"
onmouseover="FP_swapImg(1,0,/*id*/'img8',/*url*/'button4C.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img8',/*url*/'button4C.jpg')" src="button4B.jpg"
style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn:
Embossed Capsule 7" fp-title="ABOUT US" --><a href="FORM%201.html"><img
id="img9" alt="FORM" height="20"
onmousedown="FP_swapImg(1,0,/*id*/'img9',/*url*/'button5A.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img9',/*url*/'button58.jpg')"
onmouseover="FP_swapImg(1,0,/*id*/'img9',/*url*/'button59.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img9',/*url*/'button59.jpg')" src="button58.jpg"
style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn:
Embossed Capsule 6" fp-title="FORM" --></a><h1 class="auto-style9">

<u>THIS IS HOME PAGE</h1></u></font>

<u>

<font color="fuchsia">

<div class="auto-style18">

<b><br />

</b></font>
<span class="auto-style16">Top 5 National Parks In Madhya Pradesh

.</span><span class="auto-style8"> </span></div>

<ol>

<li class="auto-style5">

<strong>

<u>

<span class="auto-style4"><em>Kanha National


Park</em></span></a></u></strong></u><strong><span class="auto-
style7"><em></li></em></span></strong><span class="auto-
style7"><strong><em>&nbsp;

</em></strong></span>

<u>

<span class="auto-style4"><strong><em>&nbsp;

</em></strong></span>

<li class="auto-style5"><strong>

<span class="auto-style4"><em>Bandhavgarh National


Park</em></span></a><span class="auto-
style4"><em></li></em></span></strong><span class="auto-
style4"><strong><em>&nbsp;

</em></strong></span>

<li class="auto-style5"><strong>

<span class="auto-style4"><em>Panna National


Park</em></span></a><span class="auto-
style4"><em></li></em></span></strong><span class="auto-
style4"><strong><em>&nbsp;

</em></strong></span>

<li class="auto-style5"><strong>

<span class="auto-style4"><em>Pench National Park</em></span></a><span


class="auto-style4"><em></li></em></span></strong><span class="auto-
style4"><strong><em>&nbsp;

</em></strong></span>

<li class="auto-style5"><strong><em>Madhav National


Park</em></strong></ol>

</div>

</div>

<body background="https://images.unsplash.com/photo-1549366021-
9f761d450615?ixlib=rb-
1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=cr
op&w=406&q=80">
<img src="C:\Users\ANUSHKA PANDEY\Documents\kanha-national-park2.jpg"
width="513">

<img src="C:\Users\ANUSHKA PANDEY\Documents\bandhavgarh-national-park.jpg"


class="auto-style12">

<img src="C:\Users\ANUSHKA PANDEY\Documents\panna-national-park3.jpg"


width="513">

<img src="C:\Users\ANUSHKA PANDEY\Documents\pench-national-park2.jpg">

<img src="C:\Users\ANUSHKA PANDEY\Documents\madhav-national-park.jpg"


height="407">

</div>

</body>

</html>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta content="en-in" http-equiv="Content-Language" />

<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

<title>KANHA NATIONAL PARK</title>

<style type="text/css">

.auto-style1 {

font-family: "Engravers MT";

text-align: center;

font-size: xx-large;

.auto-style2 {

font-family: "Lucida Fax";

text-decoration: underline;

.auto-style9 {

text-decoration: underline;

background-color: #00FFFF;
}

.auto-style10 {

font-family: "Monotype Corsiva";

font-size: large;

.auto-style11 {

background-color: #FF0000;

.auto-style12 {

text-align: center;

font-size: x-large;

margin-left: 198px;

margin-top: 81px;

.auto-style13 {

font-family: "Lucida Fax";

text-decoration: underline;

background-color: #221D1D;

color: #00FFFF;

.auto-style14 {

text-align: left;

.auto-style15 {

text-align: center;

.auto-style16 {

font-weight: normal;

color: #800080;

text-decoration: underline;

font-family: "Copperplate Gothic Bold";

.auto-style17 {
font-size: x-large;

.auto-style18 {

color: rgb(255, 0, 0);

.auto-style19 {

font-size: large;

.auto-style20 {

text-align: center;

font-size: xx-large;

</style>

<font color="purple"><h4 class="auto-style1"><em>KANHA NATIONAL


PARK</em></h4></font>

</head>

<body bgcolor="yellow">

<p align="center"" class="auto-style13">Kanha National Park, also known as Kanha


Tiger Reserve, is a vast expanse of grassland and forest in the central Indian state of
Madhya Pradesh. Tigers, jackals and wild pigs can be spotted in Kanha Meadows. The
elevated plateau of Bamhnidadar is home to birds of prey. Animals often gather at the
watering holes of Sondar Tank and Babathenga Tank. The park’s flora and fauna are
documented in the park's Kanha Museum.</p>

<h1 align="center" class="auto-style16"><strong>: SOME PICS :</strong></h1>

<p align="center"" class="auto-style2">&nbsp;</p>

<div class="auto-style20">

<span class="auto-style19">&nbsp;&nbsp; &nbsp;&nbsp;

</span>

<img src="C:\Users\ANUSHKA PANDEY\Documents\kanha-national-park-20.jpg">

<img src="C:\Users\ANUSHKA PANDEY\Documents\kanha-national-park-24.jpg">

<img src="C:\Users\ANUSHKA PANDEY\Documents\kanha-national-park-32.jpg">

<img src="C:\Users\ANUSHKA PANDEY\Documents\kanha-national-park-33.jpg">

<img src="C:\Users\ANUSHKA PANDEY\Documents\kanha-national-park-34.jpg">

<img src="C:\Users\ANUSHKA PANDEY\Documents\kanha-national-park-36.jpg">


<img src="C:\Users\ANUSHKA PANDEY\Documents\kanha-national-park-tiger-2.jpg"
height="106" width="117">

</div>

<P align="center"><span class="auto-style10">Safari Timings:

Kanha National Park remain open for visitors from 16th October to 30th June. The safari
timings are:</span>

<table style="width: 100%; height: 194px;">

<tr>

<td><span class="auto-style11">TIMINGS</span><table border="0"


cellpadding="0" cellspacing="0" style="padding: 0px; margin: 0px auto 20px; outline:
none; width: 639px; border-right: 1px solid rgb(109, 141, 6); color: rgb(0, 0, 0); font-
family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; font-variant-
ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal;
orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2;
word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255,
255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-
color: initial;" width="600">

<tbody style="padding: 0px; margin: 0px; outline: none;">

<tr class="heading" style="padding: 0px; margin: 0px;


outline: none; font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: rgb(255,
255, 255); font-weight: bold; background: rgb(91, 167, 10);">

<td style="padding: 8px; margin: 0px; outline:


none; color: rgb(83, 83, 83); border-left: 1px solid rgb(109, 141, 6); border-bottom:
1px solid rgb(109, 141, 6); vertical-align: text-top;">

Timings</td>

<td style="padding: 8px; margin: 0px; outline:


none; color: rgb(83, 83, 83); border-left: 1px solid rgb(109, 141, 6); border-bottom:
1px solid rgb(109, 141, 6); vertical-align: text-top;">

Morning Safari</td>

<td style="padding: 8px; margin: 0px; outline:


none; color: rgb(83, 83, 83); border-left: 1px solid rgb(109, 141, 6); border-bottom:
1px solid rgb(109, 141, 6); vertical-align: text-top;">

Afternoon Safari</td>

</tr>

<tr class="white" style="padding: 0px; margin: 0px;


outline: none; background: rgb(255, 255, 255);">

<td style="padding: 8px; margin: 0px; outline:


none; border-left: 1px solid rgb(109, 141, 6); border-bottom: 1px solid rgb(109, 141,
6); color: rgb(83, 83, 83); vertical-align: text-top;">

16th October to 15th February</td>


<td style="padding: 8px; margin: 0px; outline:
none; border-left: 1px solid rgb(109, 141, 6); border-bottom: 1px solid rgb(109, 141,
6); color: rgb(83, 83, 83); vertical-align: text-top;">

Sunrise to 11:00 AM</td>

<td style="padding: 8px; margin: 0px; outline:


none; border-left: 1px solid rgb(109, 141, 6); border-bottom: 1px solid rgb(109, 141,
6); color: rgb(83, 83, 83); vertical-align: text-top;">

02:00 PM to Sunset</td>

</tr>

<tr class="light" style="padding: 0px; margin: 0px; outline:


none; background: rgb(236, 233, 228) !important;">

<td style="padding: 8px; margin: 0px; outline:


none; border-left: 1px solid rgb(109, 141, 6); border-bottom: 1px solid rgb(109, 141,
6); color: rgb(83, 83, 83); vertical-align: text-top;">

16th February to 15th April</td>

<td style="padding: 8px; margin: 0px; outline:


none; border-left: 1px solid rgb(109, 141, 6); border-bottom: 1px solid rgb(109, 141,
6); color: rgb(83, 83, 83); vertical-align: text-top;">

Sunrise to 11:00 AM</td>

<td style="padding: 8px; margin: 0px; outline:


none; border-left: 1px solid rgb(109, 141, 6); border-bottom: 1px solid rgb(109, 141,
6); color: rgb(83, 83, 83); vertical-align: text-top;">

03 PM to Sunset</td>

</tr>

<tr class="white" style="padding: 0px; margin: 0px;


outline: none; background: rgb(255, 255, 255);">

<td style="padding: 8px; margin: 0px; outline:


none; border-left: 1px solid rgb(109, 141, 6); border-bottom: 1px solid rgb(109, 141,
6); color: rgb(83, 83, 83); vertical-align: text-top;">

16th April to 30th June</td>

<td style="padding: 8px; margin: 0px; outline:


none; border-left: 1px solid rgb(109, 141, 6); border-bottom: 1px solid rgb(109, 141,
6); color: rgb(83, 83, 83); vertical-align: text-top;">

Sunrise to 10:00 AM</td>

<td style="padding: 8px; margin: 0px; outline:


none; border-left: 1px solid rgb(109, 141, 6); border-bottom: 1px solid rgb(109, 141,
6); color: rgb(83, 83, 83); vertical-align: text-top;">

03:30 PM to Sunset</td>

</tr>

</table>
<p class="auto-style14">

</P>

</table>

<span class="auto-style9"><strong><em>SPECIAL
OFFERS</em></strong></span><div class="container_top_up" style="padding: 0px;
margin: 0px auto; outline: none; background: none 0px 0px repeat scroll rgb(238, 238,
238); height: auto; position: absolute; top: -44px; width: 972px; color: rgb(0, 0, 0);
font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; font-variant-
ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal;
orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space:
normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-
thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">

<h1 style="padding: 0px 0px 0px 19px; margin: 0px; outline: none; font-weight:
normal; color: rgb(35, 41, 35); font-family: SariMedium; font-size: 22px; line-height:
45px; text-decoration: none;">

Special Offers</h1>

<div class="container_top_up_right-navigation" style="padding: 0px; margin: -


29px 0px 0px; outline: none; height: auto; float: right;">

<ul style="padding: 0px; margin: 0px; outline: none; font-weight:


normal; list-style: none;">

<li style="padding: 0px 12px 0px 5px; margin: 0px; outline: none;
font-weight: normal; float: left; background: url('https://www.kanha-national-
park.com/../images/aeeow1.png') no-repeat right 8px; line-height: 20px;">

<a href="https://www.kanha-national-park.com/" style="padding:


0px; margin: 0px; outline: none; font-weight: normal; text-decoration: none; font-
family: Calibri; font-size: 14px; line-height: 20px; color: rgb(35, 41, 35);">

Home</a></li>

<li class="nobg" style="padding: 0px 12px 0px 5px; margin: 0px;


outline: none; font-weight: normal; background: url('https://www.kanha-national-
park.com/../images/aeeow1.png') no-repeat right 8px; float: left; line-height: 20px;">

Special Offers</li>

</ul>

</div>

</div>

<div class="hotelresort" style="padding: 0px 15px; margin: 0px; outline: none; color:
rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal;
font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-
spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none;
white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px;
background-color: rgb(250, 239, 221); text-decoration-thickness: initial; text-
decoration-style: initial; text-decoration-color: initial;">
<div class="listing" style="padding: 0px; margin: 0px 0px 12px; outline:
none;">

<div class="left" style="padding: 0px; margin: 0px; outline: none;


background: url('https://www.kanha-national-park.com/../images/listingleft.gif') no-
repeat left top; width: 945px; height: 5px;">

</div>

<div class="mid" style="padding: 0px; margin: 0px; outline: none;


background: url('https://www.kanha-national-park.com/../images/listingmid.gif') repeat-
y left top; width: 945px;">

<h2 style="padding: 11px 0px 0px; margin: 0px; outline: none;


font-weight: normal; font-family: SariMedium; color: rgb(34, 29, 29); font-size: 16px;
line-height: 20px;" class="auto-style15">

<img height="130" src="../../Documents/deer-at-kanha-1.jpg"


width="201" /><a href="https://www.kanha-national-park.com/moglis-trail-pench-and-
kanha-national-park.html" style="padding: 0px; margin: 0px; outline: none; font-
weight: normal; text-decoration: none; " class="auto-style18"><span class="auto-
style17"><em>Mowgli’s Trail – Pench &amp; Kanha National
Park</em></span></a></h2>

<p style="padding: 0px 10px 0px 0px; margin: 5px 0px 0px;
outline: none; font-weight: normal; color: rgb(83, 83, 83); font-family: Calibri; font-
size: 14px; line-height: 22px;">

<span style="padding: 0px; margin: 0px; outline: none; font-


weight: bold; font-family: Calibri; font-size: 14px; color: rgb(109, 141, 6);">

Duration :<span>&nbsp;</span></span>04 nights / 05 days<br


style="padding: 0px; margin: 0px; outline: none; font-weight: normal;" />

<span style="padding: 0px; margin: 0px; outline: none; font-


weight: bold; font-family: Calibri; font-size: 14px; color: rgb(109, 141, 6);">

Destination :<span>&nbsp;</span></span>Nagpur - Pench


National Park -

Kanha National Park - Nagpur<br style="padding: 0px; margin:


0px; outline: none; font-weight: normal;" />

<span style="padding: 0px; margin: 0px; outline: none; font-


weight: bold; font-family: Calibri; font-size: 14px; color: rgb(109, 141, 6);">

Price
:<span>&nbsp;</span></span><span>&nbsp;</span>21479</p>

</div>

</div>

</div>

<a href="https://www.kanha-national-park.com/kanha-weekend-tour.html"
style="padding: 0px; margin: 0px; outline: none; font-weight: 400; text-decoration:
none; font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; font-
variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans:
2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal;
widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color:
rgb(250, 239, 221);">

<br class="Apple-interchange-newline" />

</a>

<h2 style="padding: 11px 0px 0px; margin: 0px; outline: none; font-weight: normal;
font-family: SariMedium; color: rgb(34, 29, 29); font-size: 16px; line-height: 20px;
font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-
spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none;
white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px;
background-color: rgb(250, 239, 221); text-decoration-thickness: initial; text-
decoration-style: initial; text-decoration-color: initial;" class="auto-style14">

<img height="130" src="../../Documents/bison-1.jpg" width="201" /><a


href="https://www.kanha-national-park.com/call-of-the-wild-kanha-national-park.html"
style="padding: 0px; margin: 0px; outline: none; font-weight: normal; text-decoration:
none; " class="auto-style18"><span class="auto-style17">Call of the Wild – Kanha
National Park</span></a></h2>

<p style="padding: 0px 10px 0px 0px; margin: 5px 0px 0px; outline: none; font-
weight: 400; color: rgb(83, 83, 83); font-family: Calibri; font-size: 14px; line-height:
22px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal;
letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform:
none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width:
0px; background-color: rgb(250, 239, 221); text-decoration-thickness: initial; text-
decoration-style: initial; text-decoration-color: initial;">

<span style="padding: 0px; margin: 0px; outline: none; font-weight: bold; font-family:
Calibri; font-size: 14px; color: rgb(109, 141, 6);">

Duration :<span>&nbsp;</span></span>03 nights / 04 days<br style="padding: 0px;


margin: 0px; outline: none; font-weight: normal;" />

<span style="padding: 0px; margin: 0px; outline: none; font-weight: bold; font-family:
Calibri; font-size: 14px; color: rgb(109, 141, 6);">

Destination :<span>&nbsp;</span></span>Kanha National Park<br style="padding:


0px; margin: 0px; outline: none; font-weight: normal;" />

<span style="padding: 0px; margin: 0px; outline: none; font-weight: bold; font-family:
Calibri; font-size: 14px; color: rgb(109, 141, 6);">

Price :<span>&nbsp;</span></span><span>&nbsp;</span>11542</p>

<a href="https://www.kanha-national-park.com/kanha-weekend-tour.html"
style="padding: 0px; margin: 0px; outline: none; font-weight: 400; text-decoration:
none; font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; font-
variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans:
2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal;
widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color:
rgb(250, 239, 221);">

<br class="Apple-interchange-newline" />

</a>
<h2 style="padding: 11px 0px 0px; margin: 0px; outline: none; font-weight: normal;
font-family: SariMedium; color: rgb(34, 29, 29); font-size: 16px; line-height: 20px;
font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-
spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none;
white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px;
background-color: rgb(250, 239, 221); text-decoration-thickness: initial; text-
decoration-style: initial; text-decoration-color: initial;">

<img height="130" src="../../Documents/kanha-national-park-tiger-2.jpg" width="201"


/><a href="https://www.kanha-national-park.com/mogli-calling-kanha-national-
park.html" style="padding: 0px; margin: 0px; outline: none; font-weight: normal; text-
decoration: none; " class="auto-style18"><span class="auto-style17">Mowgli Calling –
Kanha National Park</span></a></h2>

<p style="padding: 0px 10px 0px 0px; margin: 5px 0px 0px; outline: none; font-
weight: 400; color: rgb(83, 83, 83); font-family: Calibri; font-size: 14px; line-height:
22px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal;
letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform:
none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width:
0px; background-color: rgb(250, 239, 221); text-decoration-thickness: initial; text-
decoration-style: initial; text-decoration-color: initial;">

<span style="padding: 0px; margin: 0px; outline: none; font-weight: bold; font-family:
Calibri; font-size: 14px; color: rgb(109, 141, 6);">

Duration :<span>&nbsp;</span></span>02 nights / 03 days<br style="padding: 0px;


margin: 0px; outline: none; font-weight: normal;" />

<span style="padding: 0px; margin: 0px; outline: none; font-weight: bold; font-family:
Calibri; font-size: 14px; color: rgb(109, 141, 6);">

Destination :<span>&nbsp;</span></span>Kanha National Park<br style="padding:


0px; margin: 0px; outline: none; font-weight: normal;" />

<span style="padding: 0px; margin: 0px; outline: none; font-weight: bold; font-family:
Calibri; font-size: 14px; color: rgb(109, 141, 6);">

Price :<span>&nbsp;</span></span><span>&nbsp;</span>7754</p>

<p class="auto-style12" style="outline-width: medium; outline-style: none; outline-


color: invert; font-weight: 400; color: rgb(83, 83, 83); font-family: Calibri; line-height:
22px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal;
letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform:
none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width:
0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-
color: initial; height: 90px; width: 867px; margin-right: 0px; margin-bottom: 0px;
padding-left: 0px; padding-right: 10px; padding-top: 0px; padding-bottom: 0px;
background-color: rgb(250, 239, 221)"><a href="https://www.kanha-national-
park.com/">CLICK FOR OFFICIAL WEBSITE </a>

</p>

</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta content="en-in" http-equiv="Content-Language" />

<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

<title>BANDHAVGARH NATIONAL PARK</title>

<style type="text/css">

.auto-style2 {

font-size: large;

color: rgb(255, 255, 255);

background-color: #008000;

.auto-style3 {

text-align: center;

color: #008080;

text-decoration: underline;

.auto-style4 {

font-size: large;

.auto-style5 {

font-family: "Sitka Text Semibold";

font-size: large;

text-align: center;

color: rgb(255, 255, 255);

text-decoration: underline;

background-color: #800080;

.auto-style6 {

clear: both;

font-family: "Sitka Text Semibold";


font-weight: 400;

color: rgb(255, 255, 255);

font-size: 15px;

font-style: normal;

text-align: center;

letter-spacing: normal;

text-indent: 0px;

text-transform: none;

white-space: normal;

word-spacing: 0px;

margin: 0px;

padding-left: 0px;

padding-right: 0px;

background-color: rgb(199, 201, 203);

.auto-style7 {

font-size: large;

background-color: #800080;

.auto-style8 {

text-align: center;

.auto-style9 {

text-align: center;

color: #008080;

text-decoration: underline;

font-size: xx-large;

.auto-style10 {

margin-top: 0px;

.auto-style11 {

text-decoration: underline;
}

</style>

</head>

<body bgcolor="aqua">

<p class="auto-style9"><em><strong>BANDHAVGARH NATIONAL


PARK</strong></em></p>

<p class="auto-style3">

<span class="auto-style2" style="font-family: arial, sans-serif; font-style: normal; font-


variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing:
normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-
space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-
decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;
display: inline !important; float: none;">

Bandhavgarh National Park is in the central Indian state of Madhya Pradesh. This

biodiverse park is known for its large population of royal Bengal tigers,

especially in the central Tala zone. Other animals include white tigers,

leopards and deer. The mix of tropical forest, Sal trees and grassland is home

to scores of bird species, including eagles. To the south are the remains of the

ancient Bandhavgarh Fort.</span></p>

<h1 align="center" class="auto-style11">- SOME IMAGES -<p class="auto-


style3">&nbsp;

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\tiger.jpg">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\tiger 1.jpg">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\tiger 2.jpg" class="auto-


style10">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\tiger 3.jpg">

&nbsp;</p>

<p class="auto-style3">&nbsp;</p>

<div class="wDYxhc" data-attrid="kc:/location/location:area" data-hveid="CBgQAA"


data-md="1001" data-ved="2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQkCl6BAgYEAA"
lang="en-IN" style="clear: none; padding-left: 15px; padding-right: 15px; color:
rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 14px; font-style: normal; font-
variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing:
normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-
space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px;
background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-
decoration-style: initial; text-decoration-color: initial;">
<div class="Z1hOCe">

<div class="zloOqf PZPZlf" data-


ved="2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQyxMoAHoECBgQAQ" style="margin-top:
7px;">

<div class="rVusze">

<span class="auto-style4" style="font-weight: bolder;">

<a class="fl" data-


ved="2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQ6BMoAHoECBgQAg"
href="https://www.google.com/search?q=bandhavgarh+national+park+area&amp;stick
=H4sIAAAAAAAAAOPgE-
LUz9U3MC2xjDfUkspOttLPyU9OLMnMz4MzrBKLUhMXscolJealZCSWpScWZSjkgWUScxQKE
ouyFUAKAAOpatpKAAAA&amp;sa=X&amp;ved=2ahUKEwiqi7es67v2AhWUFIgKHQNoBvg
Q6BMoAHoECBgQAg" style="color: rgb(32, 33, 36) !important; text-decoration: none; -
webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); outline: 0px;">

Area</a>:<span>&nbsp;</span></span><span
class="auto-style4" style="font-family: arial, sans-serif; line-height: 22px; color:
rgb(60, 64, 67);">1,536&nbsp;km²</span></div>

</div>

</div>

</div>

<div class="wDYxhc" data-attrid="ss:/webfacts:locat" data-hveid="CBMQAA" data-


md="1001" data-ved="2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQkCl6BAgTEAA"
lang="en-IN" style="clear: none; padding-left: 15px; padding-right: 15px; color:
rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 14px; font-style: normal; font-
variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing:
normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-
space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px;
background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-
decoration-style: initial; text-decoration-color: initial;">

<div class="Z1hOCe">

<div class="zloOqf PZPZlf" data-


ved="2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQyxMoAHoECBMQAQ" style="margin-top:
7px;">

<div class="rVusze">

<span class="auto-style4" style="font-weight: bolder;">

<a class="fl" data-


ved="2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQ6BMoAHoECBMQAg"
href="https://www.google.com/search?q=bandhavgarh+national+park+location&amp;s
a=X&amp;ved=2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQ6BMoAHoECBMQAg"
style="color: rgb(32, 33, 36) !important; text-decoration: none; -webkit-tap-highlight-
color: rgba(0, 0, 0, 0.1); outline: 0px;">

Location</a>:<span>&nbsp;</span></span><span
class="auto-style4" style="font-family: arial, sans-serif; line-height: 22px; color:
rgb(60, 64, 67);"><a class="fl" data-
ved="2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQmxMoAXoECBMQAw"
href="https://www.google.com/search?q=Madhya+Pradesh&amp;stick=H4sIAAAAAAAA
AONgVuLQz9U3SC43yVnEyuebmJJRmagQUJSYklqcAQDGoV-
QHQAAAA&amp;sa=X&amp;ved=2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQmxMoAXoEC
BMQAw" style="color: rgb(26, 13, 171); text-decoration: none; -webkit-tap-highlight-
color: rgba(0, 0, 0, 0.1); outline: 0px;">Madhya

Pradesh</a>,<span>&nbsp;</span><a class="fl" data-


ved="2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQmxMoAnoECBMQBA"
href="https://www.google.com/search?q=India&amp;stick=H4sIAAAAAAAAAONgVuLQz9
U3MC7KNljEyuqZl5KZCACwa6pTFAAAAA&amp;sa=X&amp;ved=2ahUKEwiqi7es67v2AhW
UFIgKHQNoBvgQmxMoAnoECBMQBA" style="color: rgb(26, 13, 171); text-decoration:
none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); outline:
0px;">India</a></span></div>

</div>

</div>

</div>

<div class="wDYxhc" data-attrid="ss:/webfacts:establish" data-hveid="CBIQAA" data-


md="1001" data-ved="2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQkCl6BAgSEAA"
lang="en-IN" style="clear: none; padding-left: 15px; padding-right: 15px; color:
rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 14px; font-style: normal; font-
variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing:
normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-
space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px;
background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-
decoration-style: initial; text-decoration-color: initial;">

<div class="Z1hOCe">

<div class="zloOqf PZPZlf" data-


ved="2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQyxMoAHoECBIQAQ" style="margin-top:
7px;">

<div class="rVusze">

<span class="auto-style4" style="font-weight: bolder;">

<a class="fl" data-


ved="2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQ6BMoAHoECBIQAg"
href="https://www.google.com/search?q=bandhavgarh+national+park+established&am
p;sa=X&amp;ved=2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQ6BMoAHoECBIQAg"
style="color: rgb(32, 33, 36) !important; text-decoration: none; -webkit-tap-highlight-
color: rgba(0, 0, 0, 0.1); outline: 0px;">

Established</a>:<span>&nbsp;</span></span><span
class="auto-style4" style="font-family: arial, sans-serif; line-height: 22px; color:
rgb(60, 64, 67);">1968;<span>&nbsp;</span><a class="fl" data-
ved="2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQmxMoAXoECBIQAw"
href="https://www.google.com/search?q=Tiger+Reserve&amp;stick=H4sIAAAAAAAAAO
NgVuLUz9U3MDeoqjRexMobkpmeWqQQlFqcWlSWCgBQMoKQHQAAAA&amp;sa=X&amp;v
ed=2ahUKEwiqi7es67v2AhWUFIgKHQNoBvgQmxMoAXoECBIQAw" style="color: rgb(26,
13, 171); text-decoration: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); outline:
0px;">Tiger
Reserve</a><span>&nbsp;</span>in 1993</span></div>

</div>

</div>

</div>

<h4 class="auto-style5" style="box-sizing: inherit; padding-left: 0px; padding-right:


0px; margin-top: 0px; margin-right: 0px; margin-bottom: 5px !important; margin-left:
0px; min-height: auto !important; clear: both; overflow-wrap: break-word; font-weight:
600; font-style: normal; text-transform: capitalize; font-variant-ligatures: normal; font-
variant-caps: normal; letter-spacing: normal; orphans: 2; text-indent: 0px; white-
space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-
decoration-thickness: initial; text-decoration-style: initial; text-decoration-color:
initial;">

<span class="auto-style7"><em>Entry Fees</em></span></h4>

<h5 class="auto-style6" style="box-sizing: inherit; min-height: auto; overflow-wrap:


break-word; font-variant-ligatures: normal; font-variant-caps: normal; orphans: 2;
widows: 2; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-
decoration-style: initial; text-decoration-color: initial;">

<b style="box-sizing: inherit; font-weight: 700;"><span class="auto-style7">R

1,500&nbsp;</span></b><span class="auto-style7">per vehicle that can


accommodate six

persons. Children under 5 are free.</span></h5>

<div class="auto-style8">

<a href="https://www.bandhavgarh-national-park.com/">FOR MORE DETAILS VISIT


THE OFFICIAL WEBSITE</a>

</div>

</body>

</html>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta content="en-in" http-equiv="Content-Language" />

<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

<title>PANNA NATIONAL PARK</title>

<style type="text/css">
.auto-style2 {

font-size: large;

color: rgb(255, 0, 255);

.auto-style3 {

text-align: center;

color: #800000;

text-decoration: underline;

background-color: #00FFFF;

.auto-style7 {

font-family: "Sitka Display Semibold";

.auto-style8 {

font-size: x-large;

.auto-style9 {

text-decoration: underline;

font-size: large;

.auto-style10 {

text-align: center;

.auto-style11 {

font-size: large;

.auto-style12 {

margin-top: 0px;

.auto-style13 {

text-align: center;

color: #800000;

text-decoration: underline;
background-color: #00FFFF;

font-size: xx-large;

</style>

</head>

<body bgcolor="lime">

<p class="auto-style13"><strong><em>PANNA NATIONAL PARK</em></strong></p>

<p class="auto-style3">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\panna.jpg">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\panna-national-park.jpg"


class="auto-style12" height="180" width="414">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\panna 2.jpg">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\panna 3.jpg">

&nbsp;</p>

<p class="auto-style3">

<span class="auto-style2" style="font-family: arial, sans-serif; font-style: normal; font-


variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing:
normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-
space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px;
background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-
decoration-style: initial; text-decoration-color: initial; display: inline !important; float:
none;">

<em>Panna National Park is a national park located in Panna and Chhatarpur

districts of Madhya Pradesh in India. It has an area of 542.67 km².</em></span></p>

<p class="auto-style3">

&nbsp;</p>

<div class="TzHB6b cLjAic LMRCfc" data-hveid="CEkQAA" data-


ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQy9oBKAB6BAhJEAA"
jsdata="PhoHd;_;BVuC3U" style="margin-bottom: 0px; color: rgb(32, 33, 36); font-
family: arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures:
normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans:
2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal;
widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color:
rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-
decoration-color: initial;">

<div jsname="xQjRM">

<div class="sATSHe">
<div>

<div class="LuVEUc XleQBd B03h3d P6OZi V14nKc i8qq8b


ptcLIOszQJu__wholepage-card wp-ms" data-hveid="CEgQAA">

<div class="UDZeY OTFaAf" style="font-size:


14px;">

<div class="QsDR1c">

<div class="wDYxhc" data-


attrid="kc:/location/location:address" data-hveid="CDwQAA" data-md="1002" data-
ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQkCl6BAg8EAA" lang="en-IN" style="clear:
none; padding-left: 15px; padding-right: 15px;">

<div class="Z1hOCe">

<div class="zloOqf
PZPZlf" data-dtype="d3ifr" data-local-attribute="d3adr" data-
ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQghwoAHoECDwQAQ" style="margin-top:
7px;">

<span
class="auto-style7">

<span
class="w8qArf">

<a class="fl"
data-ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQ6BN6BAg8EAI"
href="https://www.google.com/search?q=panna+national+park+address&amp;ludocid=
11397908288998738118&amp;sa=X&amp;ved=2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNc
Q6BN6BAg8EAI" style="color: rgb(32, 33, 36) !important; text-decoration: none; -
webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); outline: 0px;">

<span
class="auto-style8">Address</span></a><span class="auto-
style8">:<span>&nbsp;</span></span></span><span class="auto-style8"><span
style="color: rgb(32, 33, 36);">NH

75, Madhya
Pradesh 471405</span></span></span><span class="auto-style8"></div>

</div>

</div>

</div>

<div>

<div class="wDYxhc" data-


attrid="kc:/location/location:hours" data-hveid="CDAQAA" data-md="1005" data-
ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQkCl6BAgwEAA" lang="en-IN" style="clear:
none; padding-left: 15px; padding-right: 15px;">

<div class="zloOqf PZPZlf"


jsaction="rcuQ6b:npT2md" jscontroller="ncqIyf" style="margin-top: 7px;">
<span class="w8qArf"
style="font-weight: bolder;">

<a class="fl" data-


ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQ6BN6BAgwEAI"
href="https://www.google.com/search?q=panna+national+park+hours&amp;ludocid=1
1397908288998738118&amp;sa=X&amp;ved=2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQ
6BN6BAgwEAI" style="color: rgb(32, 33, 36) !important; text-decoration: none; -
webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); outline: 0px;">

Hours</a>:<span>&nbsp;</span></span></span><div class="bJpcZ"
jsaction="rcuQ6b:npT2md" jscontroller="pttite" style="display: inline;">

<div aria-
expanded="false" class="vk_bk h-n" data-
ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQoT56BAgwEAM" jsaction="ytNONe"
role="button" style="color: rgb(32, 33, 36); outline: 0px; display: inline;"
tabindex="0">

<span
class="IDu36" style="text-decoration: none; display: inline;">

<span><span class="TLou0b">

<span
class="JjSWRd" style="display: inline-flex; align-items: center;">

<span
class="auto-style8">

&nbsp;Opens 6:30AM Fri</span><span class="BTP3Ac" style="border-color:


rgb(26, 13, 171) transparent; border-style: solid; border-width: 4px 4px 0px; display:
inline-block; height: 0px; margin: 5px 0px 5px 3px; vertical-align: top; width:
0px;"></span></span></span></span></span></div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

<div class="TzHB6b cLjAic" data-hveid="CEcQAA" data-


ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQ04gCKAB6BAhHEAA"
jsaction="rcuQ6b:npT2md;jQLCKe:VimORe;" jscontroller="nPaQu"
jsdata="PhoHd;_;BVuC3U" style="margin-bottom: 0px; color: rgb(32, 33, 36); font-
family: arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures:
normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans:
2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal;
widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color:
rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-
decoration-color: initial;">

<div jsname="xQjRM">

<div class="sATSHe">

<div>

<div class="LuVEUc B03h3d P6OZi V14nKc i8qq8b


ptcLIOszQJu__wholepage-card wp-ms" data-hveid="CEYQAA">

<div class="UDZeY OTFaAf" style="font-size:


14px;">

<div class="noQ1ef Nhsae">

<div class="wDYxhc" data-


attrid="kc:/location/location:area" data-hveid="CDoQAA" data-md="1001" data-
ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQkCl6BAg6EAA" lang="en-IN" style="clear:
none; padding-left: 15px; padding-right: 15px;">

<div class="Z1hOCe">

<div class="zloOqf
PZPZlf" data-ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQyxMoAHoECDoQAQ"
style="margin-top: 7px;">

<div
class="rVusze">

<span
class="auto-style8" style="font-weight: bolder;">

<a
class="fl" data-ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQ6BMoAHoECDoQAg"
href="https://www.google.com/search?q=panna+national+park+area&amp;stick=H4sIA
AAAAAAAAOPgE-
LUz9U3sIgvSTfWkspOttLPyU9OLMnMz4MzrBKLUhMXsUoUJOblJSrkgcUScxQKEouyFUBSAF
nFfrBEAAAA&amp;sa=X&amp;ved=2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQ6BMoAHoEC
DoQAg" style="color: rgb(32, 33, 36) !important; text-decoration: none; -webkit-tap-
highlight-color: rgba(0, 0, 0, 0.1); outline: 0px;">

Area</a>:<span>&nbsp;</span></span><span class="auto-style8"
style="font-family: arial, sans-serif; line-height: 22px; color: rgb(60, 64,
67);">542.7&nbsp;km²</span></div>

</div>

</div>

</div>
</div>

<div class="noQ1ef Nhsae">

<div class="wDYxhc" data-


attrid="hw:/collection/protected_sites:established date" data-hveid="CDgQAA" data-
md="1001" data-ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQkCl6BAg4EAA"
lang="en-IN" style="clear: none; padding-left: 15px; padding-right: 15px;">

<div class="Z1hOCe">

<div class="zloOqf
PZPZlf" data-ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQyxMoAHoECDgQAQ"
style="margin-top: 7px;">

<div
class="rVusze">

<span
class="auto-style8" style="font-weight: bolder;">

<a
class="fl" data-ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQ6BMoAHoECDgQAg"
href="https://www.google.com/search?q=panna+national+park+established&amp;stick
=H4sIAAAAAAAAAOPgE-
LUz9U3sIgvSTfW0s8ot9JPzs_JSU0uyczP0y8oyi8BMlNT4oszS1KLrVKLSxKTcjKLM1JTFFISS
1IXscoXJOblJSrkJYLUJ-
YoFCQWZSsgKQMAzC6IfmAAAAA&amp;sa=X&amp;ved=2ahUKEwj1luyX7rv2AhVqQfUHH
Y8jCNcQ6BMoAHoECDgQAg" style="color: rgb(32, 33, 36) !important; text-decoration:
none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); outline: 0px;">

Established</a>:<span>&nbsp;</span></span><span class="auto-style8"
style="font-family: arial, sans-serif; line-height: 22px; color: rgb(60, 64,
67);">1981</span></div>

</div>

</div>

</div>

</div>

<div class="noQ1ef Nhsae">

<div class="wDYxhc" data-


attrid="kc:/protected_sites/protected_site:management" data-hveid="CDkQAA" data-
md="1001" data-ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQkCl6BAg5EAA"
lang="en-IN" style="clear: none; padding-left: 15px; padding-right: 15px;">

<div class="Z1hOCe">

<div class="zloOqf
PZPZlf" data-ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQyxMoAHoECDkQAQ"
style="margin-top: 7px;">

<div
class="rVusze">
<span
class="auto-style8" style="font-weight: bolder;">

<a
class="fl" data-ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQ6BMoAHoECDkQAg"
href="https://www.google.com/search?q=panna+national+park+management&amp;stic
k=H4sIAAAAAAAAAOPgE-
LUz9U3sIgvSTfW0s1OttIvKMovSU0uSU2JL84sSS1G41vlJuYlpqfmpuaVLGKVK0jMy0tUyEss
yczPS8xRKEgsylZAKAAASWM7Hl0AAAA&amp;sa=X&amp;ved=2ahUKEwj1luyX7rv2AhVq
QfUHHY8jCNcQ6BMoAHoECDkQAg" style="color: rgb(32, 33, 36) !important; text-
decoration: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); outline: 0px;">

Management</a>:<span>&nbsp;</span></span><span class="auto-style8"
style="font-family: arial, sans-serif; line-height: 22px; color: rgb(60, 64, 67);"><a
class="fl" data-ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQmxMoAXoECDkQAw"
href="https://www.google.com/search?q=Ministry+of+Environment,+Forest+and+Clima
te+Change&amp;stick=H4sIAAAAAAAAAOPgE-
LUz9U3sIgvSTdWAjPTTXONjLR0s5Ot9AuK8ktSk0tSU-
KLM0tSi9H4VrmJeYnpqbmpeSWLWI18M_Myi0uKKhXy0xRc88oyi_LzQDI6Cm75RanFJQqJe
SkKzjmZuYklqQrOGYl56ak7WBkBKDVvkH8AAAA&amp;sa=X&amp;ved=2ahUKEwj1luyX7
rv2AhVqQfUHHY8jCNcQmxMoAXoECDkQAw" style="color: rgb(26, 13, 171); text-
decoration: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); outline: 0px;">Ministry

of
Environment, Forest and Climate</a><br />

<br />

<a
class="fl" data-ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQmxMoAXoECDkQAw"
href="https://www.google.com/search?q=Ministry+of+Environment,+Forest+and+Clima
te+Change&amp;stick=H4sIAAAAAAAAAOPgE-
LUz9U3sIgvSTdWAjPTTXONjLR0s5Ot9AuK8ktSk0tSU-
KLM0tSi9H4VrmJeYnpqbmpeSWLWI18M_Myi0uKKhXy0xRc88oyi_LzQDI6Cm75RanFJQqJe
SkKzjmZuYklqQrOGYl56ak7WBkBKDVvkH8AAAA&amp;sa=X&amp;ved=2ahUKEwj1luyX7
rv2AhVqQfUHHY8jCNcQmxMoAXoECDkQAw" style="color: rgb(26, 13, 171); text-
decoration: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); outline: 0px;">

Change</a>,<span>&nbsp;</span><a class="fl" data-


ved="2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQmxMoAnoECDkQBA"
href="https://www.google.com/search?q=Government+of+India&amp;stick=H4sIAAAA
AAAAAOPgE-LUz9U3sIgvSTdWAjONCpJyy7V0s5Ot9AuK8ktSk0tSU-
KLM0tSi9H4VrmJeYnpqbmpeSWLWIXd88tSi_JAHIX8NAXPvJTMxB2sjADjo-
8vYAAAAA&amp;sa=X&amp;ved=2ahUKEwj1luyX7rv2AhVqQfUHHY8jCNcQmxMoAnoECD
kQBA" style="color: rgb(26, 13, 171); text-decoration: none; -webkit-tap-highlight-
color: rgba(0, 0, 0, 0.1); outline: 0px;">Government

of
India</a></span><br />

<br />

</div>

</div>
</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

<div class="auto-style10">

<a href="https://www.pannatigerreserve.in/"><strong><span class="auto-


style11">CLICK TO VISIT OFFICIAL WEBSITE</span></strong><span class="auto-
style9"><a><strong>

</strong></span></div>

</body>

</html>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta content="en-in" http-equiv="Content-Language" />

<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

<title>PENCH NATIONAL PARK</title>

<style type="text/css">

.auto-style2 {

font-size: large;

font-family: "Sitka Display Semibold";

color: rgb(0, 0, 0);

background-color: #FFFF00;

.auto-style3 {
text-align: center;

text-decoration: underline;

color: #808000;

.auto-style5 {

font-size: large;

.auto-style6 {

color: rgb(0, 0, 0);

.auto-style7 {

color: rgb(0, 0, 0);

background-color: #FFFF00;

.auto-style8 {

background-color: #FFFF00;

.auto-style9 {

text-align: center;

.auto-style10 {

font-size: medium;

.auto-style11 {

text-align: center;

text-decoration: underline;

color: #FF0000;

font-size: xx-large;

</style>

</head>

<body bgcolor="teal">
<p class="auto-style11"><strong><em>PENCH NATIONAL PARK</em></strong></p>

<p class="auto-style3">

<span class="auto-style2" style="font-style: normal; font-variant-ligatures: normal;


font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-
align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2;
word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial;
text-decoration-style: initial; text-decoration-color: initial; display: inline !important;
float: none;">

Pench National Park is a national park in India's Madhya Pradesh state,

established in 1975 with an area of 257.26 km².</span></p>

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\pench.jpg" class="auto-


style6">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\pench 3.jpg" class="auto-


style6" height="214">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\pench 1.jpg" class="auto-


style6" height="219">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\pench 4 .jpg" class="auto-


style6" height="226">

<p class="auto-style5" style="margin: 0.5em 0px; color: rgb(32, 33, 34); font-family:
sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal;
font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px;
text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-
text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-
thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">

<span class="auto-style6"><span class="auto-style8">It


includes&nbsp;</span></span><a class="auto-style7"
href="https://en.wikipedia.org/wiki/Pench_Tiger_Reserve" style="background-position:
0% 0%; text-decoration: none; background-image: none; background-repeat: repeat;
background-attachment: scroll;" title="Pench Tiger Reserve">Pench

Tiger Reserve</a><span class="auto-style6"><span class="auto-style8">&nbsp;and

derives its name from the&nbsp;</span></span><a class="auto-style7"


href="https://en.wikipedia.org/wiki/Pench_River" style="background-position: 0% 0%;
text-decoration: none; background-image: none; background-repeat: repeat;
background-attachment: scroll;" title="Pench River">Pench

River</a><span class="auto-style6"><span class="auto-style8">&nbsp;that flows


through

the park from north to south dividing the park into almost equal western and

eastern halves, the well-forested areas of&nbsp;</span></span><a class="auto-style7"


href="https://en.wikipedia.org/wiki/Seoni" style="background-position: 0% 0%; text-
decoration: none; background-image: none; background-repeat: repeat; background-
attachment: scroll;" title="Seoni">Seoni</a><span class="auto-style6"><span
class="auto-style8">&nbsp;and&nbsp;</span></span><a class="auto-style7"
href="https://en.wikipedia.org/wiki/Chhindwara" style="background-position: 0% 0%;
text-decoration: none; background-image: none; background-repeat: repeat;
background-attachment: scroll;" title="Chhindwara">Chhindwara</a><span
class="auto-style7">&nbsp;districts

respectively. It was declared a sanctuary in 1965, raised to the status of

national park in 1975 and enlisted as a tiger reserve in 1992.</span></p>

<p class="auto-style5" style="margin: 0.5em 0px; color: rgb(32, 33, 34); font-family:
sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal;
font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px;
text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-
text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-
thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">

<span class="auto-style6"><span class="auto-style8">The national park consists

of dry deciduous forests and much fauna and flora including&nbsp;</span></span><a


class="auto-style7" href="https://en.wikipedia.org/wiki/Tigers" style="background-
position: 0% 0%; text-decoration: none; background-image: none; background-repeat:
repeat; background-attachment: scroll;" title="Tigers">tigers</a><span class="auto-
style6"><span class="auto-style8">,

various types of&nbsp;</span></span><a class="auto-style7"


href="https://en.wikipedia.org/wiki/Deer" style="background-position: 0% 0%; text-
decoration: none; background-image: none; background-repeat: repeat; background-
attachment: scroll;" title="Deer">deer</a><span class="auto-style7">&nbsp;and

birds.2011, the park won the "Best Management Award".This park is accessible

from Pauni on National Highway 7 and has two famous entry gates, Turiya and

Karmajhiri</span></p>

<div class="noQ1ef Nhsae" style="color: rgb(32, 33, 36); font-family: arial, sans-serif;
font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps:
normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-
indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;
-webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-
thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">

<div class="wDYxhc" data-attrid="ss:/webfacts:locat" data-hveid="CCoQAA"


data-md="1001" data-ved="2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQkCl6BAgqEAA"
lang="en-IN" style="clear: none; padding-left: 15px; padding-right: 15px;">

<div class="Z1hOCe">

<div class="zloOqf PZPZlf" data-


ved="2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQyxMoAHoECCoQAQ" style="margin-top:
7px;">

<div class="rVusze">

<span class="auto-style5" style="font-weight:


bolder;">

<a class="fl" data-


ved="2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQ6BMoAHoECCoQAg"
href="https://www.google.com/search?sa=X&amp;q=pench+national+park+location&a
mp;ved=2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQ6BMoAHoECCoQAg" style="color:
rgb(32, 33, 36) !important; text-decoration: none; -webkit-tap-highlight-color: rgba(0,
0, 0, 0.1); outline: 0px;">

Location</a>:<span>&nbsp;</span></span><span
class="auto-style5" style="font-family: arial, sans-serif; line-height: 22px; color:
rgb(60, 64, 67);"><a class="fl" data-
ved="2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQmxMoAXoECCoQAw"
href="https://www.google.com/search?sa=X&amp;q=Madhya+Pradesh,+India&amp;stic
k=H4sIAAAAAAAAAONgVuLQz9U3SC43yVnEKuqbmJJRmagQUJSYklqcoaPgmZeSmQgAMc
HRjiQAAAA&amp;ved=2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQmxMoAXoECCoQAw"
style="color: rgb(26, 13, 171); text-decoration: none; -webkit-tap-highlight-color:
rgba(0, 0, 0, 0.1); outline: 0px;">Madhya

Pradesh, India</a></span></div>

</div>

</div>

</div>

</div>

<div class="noQ1ef Nhsae" style="color: rgb(32, 33, 36); font-family: arial, sans-serif;
font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps:
normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-
indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;
-webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-
thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">

<div class="wDYxhc" data-attrid="hw:/collection/protected_sites:established


date" data-hveid="CCsQAA" data-md="1001" data-
ved="2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQkCl6BAgrEAA" lang="en-IN"
style="clear: none; padding-left: 15px; padding-right: 15px;">

<div class="Z1hOCe">

<div class="zloOqf PZPZlf" data-


ved="2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQyxMoAHoECCsQAQ" style="margin-top:
7px;">

<div class="rVusze">

<span class="auto-style5" style="font-weight:


bolder;">

<a class="fl" data-


ved="2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQ6BMoAHoECCsQAg"
href="https://www.google.com/search?sa=X&amp;q=pench+national+park+established
&amp;stick=H4sIAAAAAAAAAOPgE-
LSz9U3MDItKjYp1NLPKLfST87PyUlNLsnMz9MvKMovATJTU-
KLM0tSi61Si0sSk3IyizNSUxRSEktSF7HKF6TmJWco5CWC1CfmKBQkFmUrICkDACkKIl9hA
AAA&amp;ved=2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQ6BMoAHoECCsQAg"
style="color: rgb(32, 33, 36) !important; text-decoration: none; -webkit-tap-highlight-
color: rgba(0, 0, 0, 0.1); outline: 0px;">
Established</a>:<span>&nbsp;</span></span><span class="auto-style5"
style="font-family: arial, sans-serif; line-height: 22px; color: rgb(60, 64,
67);">1975</span></div>

</div>

</div>

</div>

</div>

<div class="noQ1ef Nhsae" style="color: rgb(32, 33, 36); font-family: arial, sans-serif;
font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps:
normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-
indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;
-webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-
thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">

<div class="wDYxhc" data-attrid="kc:/location/location:area" data-


hveid="CDMQAA" data-md="1001" data-
ved="2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQkCl6BAgzEAA" lang="en-IN"
style="clear: none; padding-left: 15px; padding-right: 15px;">

<div class="Z1hOCe">

<div class="zloOqf PZPZlf" data-


ved="2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQyxMoAHoECDMQAQ" style="margin-top:
7px;">

<div class="rVusze">

<span class="auto-style5" style="font-weight:


bolder;">

<a class="fl" data-


ved="2ahUKEwj455Wn8Lv2AhXLA94KHSiUAwEQ6BMoAHoECDMQAg"
href="https://www.google.com/search?sa=X&amp;q=pench+national+park+area&amp;
stick=H4sIAAAAAAAAAOPgE-LSz9U3MDItKjYp1JLKTrbSz8lPTizJzM-
DM6wSi1ITF7FKFKTmJWco5IHFEnMUChKLshVAUgAJXkatRQAAAA&amp;ved=2ahUKEwj4
55Wn8Lv2AhXLA94KHSiUAwEQ6BMoAHoECDMQAg" style="color: rgb(32, 33, 36)
!important; text-decoration: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
outline: 0px;">

Area</a>:<span>&nbsp;</span></span><span
class="auto-style5" style="font-family: arial, sans-serif; line-height: 22px; color:
rgb(60, 64, 67);">257.3&nbsp;km²</span></div>

</div>

</div>

</div>

</div>

<div class="auto-style9">
<a href="https://www.penchnationalpark.com/"><span class="auto-style10">CLICK TO
VISIT OFFICIAL WEBSITE</span></a>

</div>

</body>

</html>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta content="en-in" http-equiv="Content-Language" />

<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

<title>MADHAV NATIONAL PARK</title>

<style type="text/css">

.auto-style1 {

color: #800000;

text-align: center;

text-decoration: underline;

font-size: xx-large;

.auto-style2 {

color: #0000FF;

text-align: center;

text-decoration: underline;

font-size: x-large;

.auto-style3 {

font-size: large;

font-family: "Times New Roman";

.auto-style5 {

font-weight: bold;
color: rgb(255, 0, 0);

.auto-style6 {

font-weight: bold;

font-size: large;

color: rgb(255, 0, 0);

.auto-style7 {

font-size: large;

.auto-style8 {

color: rgb(255, 0, 0);

.auto-style9 {

text-align: center;

font-size: large;

.auto-style10 {

text-align: center;

.auto-style11 {

font-size: x-large;

</style>

</head>

<body bgcolor="olive">

<div class="auto-style10">

<p class="auto-style1"><strong><em>MADHAV NATIONAL


PARK</em></strong></p>

<p class="auto-style2">
<span class="auto-style3" style="color: rgb(77, 81, 86); font-style: normal; font-
variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing:
normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-
space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px;
background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-
decoration-style: initial; text-decoration-color: initial; display: inline !important; float:
none;">

Madhav National Park is situated in Shivpuri District of Gwalior division in

northwest Madhya Pradesh, India. Two national highways pass through the park,

the Agra to Bombay former National Highway 3 and the Jhansi to Shivpuri National

Highway 27.</span></p>

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\madhav.jpg" class="auto-


style11">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\madhav 1.jpg"


class="auto-style11">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\madhav 2.jpg"


class="auto-style11">

<img src="C:\Users\ANUSHKA PANDEY\Pictures\Screenshots\madhav 4.jpg"


class="auto-style11">

<p class="auto-style2">

&nbsp;</p>

<div class="TzHB6b cLjAic LMRCfc" data-hveid="CEUQAA" data-


ved="2ahUKEwi7jprW8rv2AhVEA94KHYjVCQYQy9oBKAB6BAhFEAA"
jsdata="PhoHd;_;CPJ8e4" style="margin-bottom: 0px; color: rgb(32, 33, 36); font-
family: arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures:
normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans:
2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal;
widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color:
rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-
decoration-color: initial;">

<div jsname="xQjRM">

<div class="sATSHe">

<div>

<div class="LuVEUc XleQBd B03h3d P6OZi V14nKc i8qq8b


ptcLIOszQJu__wholepage-card wp-ms" data-hveid="CEMQAA">

<div class="auto-style7">

<div class="QsDR1c">

<div class="wDYxhc" data-


attrid="kc:/location/location:address" data-hveid="CD8QAA" data-md="1002" data-
ved="2ahUKEwi7jprW8rv2AhVEA94KHYjVCQYQkCl6BAg_EAA" lang="en-IN"
style="clear: none; padding-left: 15px; padding-right: 15px;">
<div class="Z1hOCe">

<div class="zloOqf
PZPZlf" data-dtype="d3ifr" data-local-attribute="d3adr" data-
ved="2ahUKEwi7jprW8rv2AhVEA94KHYjVCQYQghwoAHoECD8QAQ" style="margin-top:
7px;">

<span
class="w8qArf" style="font-weight: bolder;">

<a class="fl"
data-ved="2ahUKEwi7jprW8rv2AhVEA94KHYjVCQYQ6BN6BAg_EAI"
href="https://www.google.com/search?sa=X&amp;q=madhav+national+park+address&
amp;ludocid=5328482125633888168&amp;ved=2ahUKEwi7jprW8rv2AhVEA94KHYjVCQ
YQ6BN6BAg_EAI" style="color: rgb(32, 33, 36) !important; text-decoration: none; -
webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); outline: 0px;">

<span
class="auto-style8">Address</span></a>:<span class="auto-
style8">&nbsp;</span></span><span class="auto-style5">Shivpuri

- Jhansi Rd,
Shivpuri, Madhya Pradesh

473551</span></div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

<div class="TzHB6b cLjAic" data-hveid="CEQQAA" data-


ved="2ahUKEwi7jprW8rv2AhVEA94KHYjVCQYQ04gCKAB6BAhEEAA"
jsaction="rcuQ6b:npT2md;jQLCKe:VimORe;" jscontroller="nPaQu"
jsdata="PhoHd;_;CPJ8e4" style="margin-bottom: 0px; color: rgb(32, 33, 36); font-
family: arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures:
normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans:
2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal;
widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color:
rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-
decoration-color: initial;">

<div jsname="xQjRM">

<div class="sATSHe">
<div>

<div class="LuVEUc B03h3d P6OZi V14nKc i8qq8b


ptcLIOszQJu__wholepage-card wp-ms" data-hveid="CEIQAA">

<div class="UDZeY OTFaAf" style="font-size:


14px;">

<div class="noQ1ef Nhsae">

<div class="wDYxhc" data-


attrid="hw:/collection/protected_sites:established date" data-hveid="CDMQAA" data-
md="1001" data-ved="2ahUKEwi7jprW8rv2AhVEA94KHYjVCQYQkCl6BAgzEAA"
lang="en-IN" style="clear: none; padding-left: 15px; padding-right: 15px;">

<div class="Z1hOCe">

<div class="zloOqf
PZPZlf" data-ved="2ahUKEwi7jprW8rv2AhVEA94KHYjVCQYQyxMoAHoECDMQAQ"
style="margin-top: 7px;">

<div
class="rVusze">

<span
class="auto-style7" style="font-weight: bolder;">

<a
class="fl" data-ved="2ahUKEwi7jprW8rv2AhVEA94KHYjVCQYQ6BMoAHoECDMQAg"
href="https://www.google.com/search?sa=X&amp;q=madhav+national+park+establish
ed&amp;stick=H4sIAAAAAAAAAOPgE-
LUz9U3MC0uN6nS0s8ot9JPzs_JSU0uyczP0y8oyi8BMlNT4oszS1KLrVKLSxKTcjKLM1JTFFIS
S1IXsSrkJqZkJJYp5CWCNCTmKBQkFmUrIKkDAGmo7BlhAAAA&amp;ved=2ahUKEwi7jpr
W8rv2AhVEA94KHYjVCQYQ6BMoAHoECDMQAg" style="color: rgb(32, 33, 36)
!important; text-decoration: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
outline: 0px;">

<span
class="auto-style8">

Established</span></a>:<span class="auto-
style8">&nbsp;</span></span><span class="auto-style6" style="font-family: arial,
sans-serif; line-height: 22px;">1958</span></div>

</div>

</div>

</div>

</div>

<div class="noQ1ef Nhsae">

<div class="wDYxhc" data-


attrid="kc:/location/location:area" data-hveid="CDYQAA" data-md="1001" data-
ved="2ahUKEwi7jprW8rv2AhVEA94KHYjVCQYQkCl6BAg2EAA" lang="en-IN"
style="clear: none; padding-left: 15px; padding-right: 15px;">
<div class="Z1hOCe">

<div class="zloOqf
PZPZlf" data-ved="2ahUKEwi7jprW8rv2AhVEA94KHYjVCQYQyxMoAHoECDYQAQ"
style="margin-top: 7px;">

<div
class="rVusze">

<span
class="auto-style7" style="font-weight: bolder;">

<a
class="fl" data-ved="2ahUKEwi7jprW8rv2AhVEA94KHYjVCQYQ6BMoAHoECDYQAg"
href="https://www.google.com/search?sa=X&amp;q=madhav+national+park+area&am
p;stick=H4sIAAAAAAAAAOPgE-
LUz9U3MC0uN6nSkspOttLPyU9OLMnMz4MzrBKLUhMXsUrmJqZkJJYp5IEFE3MUChKLshVAc
gCv2gMrRQAAAA&amp;ved=2ahUKEwi7jprW8rv2AhVEA94KHYjVCQYQ6BMoAHoECDYQA
g" style="color: rgb(32, 33, 36) !important; text-decoration: none; -webkit-tap-
highlight-color: rgba(0, 0, 0, 0.1); outline: 0px;">

<span
class="auto-style8">Area</span></a>:<span class="auto-
style8">&nbsp;</span></span><span class="auto-style6" style="font-family: arial,
sans-serif; line-height: 22px;">354&nbsp;km²<br />

</span></div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

<div class="auto-style9">

<a href="https://shivpuri.nic.in/en/tourist-place/madhav-national-park/">CLICK TO
VISIT OFFICIAL WEBSITE</a></div>

</div>
</body>

</html>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

<title>Untitled 1</title>

<style type="text/css">

.auto-style1 {

font-family: "Monotype Corsiva";

font-size: xx-large;

font-weight: normal;

.auto-style2 {

margin-left: 0px;

.auto-style5 {

text-align: left;

.auto-style6 {

font-size: large;

.auto-style7 {

color: #FFFFFF;

background-color: #0000FF;

.auto-style10 {

border-style: solid;
border-width: 1px;

padding: 1px 4px;

.auto-style11 {

color: #FF0000;

</style>

</head>

<body bgcolor="lightpink">

<div class="container">

<hr />

<h1 align="center">

<img src="../../Pictures/Screenshots/images.jpg" class="auto-style2" height="220"


width="230" />&nbsp;

<span class="auto-style1"><strong>Wildlife National Parks</strong></span></h1>

<hr />

<h1 align="left" class="auto-style11">Registration Form</h1>

<div class="col-lg-8 m-auto d-block">

<form action="#" onsubmit="return validation()">

<div class="auto-style10">

<div class="auto-style5">

<label> <span class="auto-style6"><strong>Username :<br />

&nbsp;</strong></span></label><strong><input type="text" name="User"


class="auto-style6" id="User" value="" style="width: 641px; height: 43px;"
autocomplete="off"></input> </strong><span id="username"> </span>

</div>

<div class="auto-style5">

<label> <span class="auto-style6"><strong>Password :<br />

&nbsp;</strong></span></label><strong><input type="text" name="Pass"


class="auto-style6" id="Pass" style="width: 641px; height: 43px;"
autocomplete="off"></input></strong><span class="auto-style6"><strong>

</strong></span><span id="passwords"> </span>

</div>
<div class="auto-style5">

<label> <span class="auto-style6"><strong>Confirm Password :<br />

&nbsp;</strong></span></label><strong><input type="text" name="Conpass"


class="auto-style6" id="Conpass" style="width: 641px; height: 43px;"
autocomplete="off"></input></strong><span class="auto-style6"><strong><span
id="confirmpass"> </span>

<br />

</span>

<strong><span><label><span class="auto-style6"><strong>Mobile Number


:</strong></span><strong><br class="auto-style6" />

</strong><span class="auto-
style6"><strong>&nbsp;</strong></span></label><strong><input type="text"
name="Mobile" class="auto-style6" id="MobileNumber" style="width: 641px; height:
43px;" autocomplete="off"></input></strong><span class="auto-style6"><strong>

</strong></span><span id="mobileno"> </span>

<div>

<div class="auto-style5">

<label> <span class="auto-style6"><strong>Email Address :<br />

&nbsp;</strong></span></label><input type="text" name="Email" class="form-


control" id="Emails" style="width: 641px; height: 43px;"
autocomplete="off"></input><span id="emailids">

<br />

</span>

<br />

</div>

<div class="auto-style5">

<input type="Submit" name="submit" value="Submit" class="auto-style7"


style="width: 106px; height: 43px"></input>&nbsp;

</form>

</div>

</div>

</div>

<script>

function validation()

var correct = /^[A-Za-z]+$/


var a = document.getElementById("User").value;

var pass = document.getElementById("Pass").value;

var confirmpass = document.getElementById("Conpass").value;

var mobilenumber = document.getElementById("MobileNumber").value;

var emails = document.getElementById("Emails").value;

if(a=="")

document.getElementById('username').innerHTML="* Username is required";

return false;

if(a.length <= 2){

document.getElementById('username').innerHTML="* Username must be greater than 2


characters.";

return false;

if(a.match(correct))

true

else{

document.getElementById('username').innerHTML="* Only characters/alphabets are


allowed.";

return false;

if(pass=="")

document.getElementById('passwords').innerHTML="* Password is required";

return false;

if((pass.length <= 5) || (pass.length > 20)) {

document.getElementById('passwords').innerHTML="* Password length must be


between 5 and 20.";

return false;

if(pass!=confirmpass){

document.getElementById('confirmpass').innerHTML="* Passwords are not matching.";


return false;

if(confirmpass=="")

document.getElementById('confirmpass').innerHTML="* Please fill Confirm Password";

return false;

if(mobilenumber=="")

document.getElementById('mobileno').innerHTML="* Mobile Number is required";

return false;

if(isNaN(mobilenumber)){

document.getElementById('mobileno').innerHTML="* Only numbers are allowed.";

return false;

if(mobilenumber.length != 10){

document.getElementById('mobileno').innerHTML="* Mobile Number should be 10 digits


long.";

return false;

if(emails=="")

document.getElementById('emailids').innerHTML="* Email is required";

return false;

if(emails.indexOf('@') <= 0){

document.getElementById('emailids').innerHTML="* Invalid @ position.";

return false;

if((emails.charAt(emails.length-4)!='.') && (emails.charAt(emails.length-3)!='.')){

document.getElementById('emailids').innerHTML="* Invalid . position.";

return false;
}

alert("Registration Successful")

</script>

</body>

</html>
Conclusion

This website has been developed to provide the


information about the top 5 Wildlife National
Parks of Madhya Pradesh (M.P.). The main
goal of designing this website is to explore the
beauty and greatness of fauna of Madhya
Pradesh. The wildlife website offers a wide
range of safaris and leaves a lasting impact on
all who visit. The user can browse through
different categories as per their wish and will.

The website is developed using HTML, CSS and


JS tags. These together contribute in building
an interactive website. CSS helps in enhancing
the appearance of the website by making it
more attractive. Microsoft Expression Web
(MEW) further adds in designing a website as
it is easy to use and the user can view the code
and design simultaneously. It also has some
unique features like intellisense, add-ins,
snippets etc. which enhance the visibility of a
website.
Future Enhancements
The website can be enhanced as an online visit
to top national parks of Madhya Pradesh. It
can also be enhanced so that the user can go
through and book rides and jungle safaris
online according to the convenience and
suitable visiting hours.

The users can also choose the national park to


visit according to their choices. They can even
book more than one national park to visit.
Different time slots are also provided so that
the user can book accordingly. Once it is done
the user can visit the booked national park
and can explore the uniqueness and beauty of
the wild fauna of Madhya Pradesh.
Bibliography
https://www.w3schools.com
https://youtu.be/8H4HAhiZ8Io

Thank You !

You might also like