You are on page 1of 47

DAV INSTITUTE OF

MANAGEMENT
PRACTICAL FILE OF
COMPUTER
NETWORKING &
INTERNET
BBA(G)-504

Submitted to: Dr. Kavita Goel Submitted by: RAVINDER

BBA-GEN 5th Sem

Roll no.-
INDEX
S No. Title Date Remarks
1 Assignment 1 18/11/2023

2 Assignment 2 18/11/2023

3 Assignment 3 18/11/2023

4 Assignment 4 18/11/2023

5 Assignment 5 18/11/2023

6 Assignment 6 18/11/2023

7 Assignment 7 18/11/2023

8 Assignment 8 18/11/2023

9 Assignment 9 18/11/2023

10 Assignment 10 18/11/2023

11 Assignment 11 18/11/2023

12 Assignment 12 18/11/2023

13 Assignment 13 18/11/2023

14 Assignment 14 18/11/2023
Assignment 1

What is HTML?
HTML (Hypertext Markup Language) is a text-based approach to describing how content
contained within an HTML file is structured. This markup tells a web browser how to display
text, images and other forms of multimedia on a webpage.

HTML is a formal recommendation by the World Wide Web Consortium (W3C) and is
generally adhered to by all major web browsers, including both desktop and mobile web
browsers. HTML5 is the latest version of the specification.

Basics of an HTML element

Using HTML, a document containing text is further marked up with additional text describing
how the document should be displayed. To keep the markup part separate from the actual
content of the HTML file, there is a special, distinguishing HTML syntax that is used. These
special components are known as HTML tags. The tags can contain name-value pairs known
as attributes, and a piece of content that is enclosed within a tag is referred to as an HTML
element.

An HTML element always has an opening tag, content in the middle and a closing tag.
Attributes can provide additional information about the element and are included in the opening
tag. Elements can be described in one of two ways:

1. Block-level elements start on a new line in the document and take up their own space.
Examples of these elements include headings and paragraph tags.
2. Inline elements do not start on a new line in the document and only take up necessary space.
These elements usually format the contents of block-level elements. Examples of inline
elements include hyperlinks and text format tags.
Assignment 2

What is DHTML?
DHTML stands for Dynamic HTML, it is totally different from HTML. The browsers which
support the dynamic HTML are some of the versions of Netscape Navigator and Internet
Explorer of version higher than 4.0. The DHTML is based on the properties of the HTML,
javascript, CSS, and DOM (Document Object Model which is used to access individual
elements of a document) which helps in making dynamic content. It is the combination of
HTML, CSS, JS, and DOM. The DHTML make use of Dynamic object model to make changes
in settings and also in properties and methods. It also makes uses of Scripting and it is also part
of earlier computing trends.
DHTML allows different scripting languages in a web page to change their variables, which
enhance the effects, looks and many others functions after the whole page have been fully
loaded or under a view process, or otherwise static HTML pages on the same. But in true ways,
there is noting that as dynamic in DHTML, there is only the enclosing of different technologies
like CSS, HTML, JS, DOM, and different sets of static languages which make it as dynamic.
DHTML is used to create interactive and animated web pages that are generated in real-time,
also known as dynamic web pages so that when such a page is accessed, the code within the
page is analyzed on the web server and the resulting HTML is sent to the client’s web browser.
DHTML allows authors to add effects to their pages that are otherwise difficult to achieve, by
changing the Document Object Model (DOM) and page style. The combination of HTML, CSS
and JavaScript offers ways to:

 Animate text and images in their document.


 Embed a ticker or other dynamic display that automatically refreshes its content with the
latest news, stock quotes, or other data.
 Use a form to capture user input, and then process, verify and respond to that data without
having to send data back to the server.
 Include rollover buttons or drop-down menus.
A less common use is to create browser-based action games. Although a number of games were
created using DHTML during the late 1990s and early 2000s,differences between browsers
made this difficult: many techniques had to be implemented in code to enable the games to
work on multiple platforms. Recently browsers have been converging towards web standards,
which has made the design of DHTML games more viable.
Assignment 3

What are tags and attributes. Explain basic tags of


HTML

<BODY>...</BODY> Contains the viewed portion of the document

<BODY bgcolor="color"> Sets the color of the background in hexadecimal code

Image tag and attributes

<IMG> Embeds an image in the document at


the location of the tag

<IMG src="url" alt="text" height="pixels"> Sets the height of an image

<IMG src="url" alt="text" width="pixels"> Sets the width of an image

Anchor tag and attributes

<A>...</A> Designates the origin and destination of a hyperlink

<A HREF="url">...</A> Creates a hyperlink

Table tags and attributes

<TABLE>...</TABLE> Generates a table

<TABLE Sets the size of cell borders


border="pixels">

<TABLE Sets the height of a table


height="pixels" or
"%">

<TABLE Sets the width of a table


width="pixels" or
"%">

<TD>...</TD> Defines a table data cell

<TH>...</TH> Defines a table header with bold, centered table data

<TR>...</TR> Defines a table row


Assignment 4

Write HTML code to display DAVIM in Title


Code:
<HTML>
<TITLE>DAVIM</TITLE>
</HTML>

Output:
Assignment 5

Write HTML code to display Your name in head


Code:
<HTML>
<HEAD>RAVINDER</HEAD>
</HTML>

Output:
Assignment 6

Write HTML code to display to set background color


Code:
<HTML>
<TITLE>DAVIM</TITLE>
<HEAD>RAVINDER</HEAD>
<Body bgcolor=green>
</BODY>
</HTML>

Output:
Assignment 7

Write HTML code to display text in center


Code:
<HTML>
<TITLE>DAVIM</TITLE>
<HEAD>RAVINDER</HEAD>
<Body bgcolor=green><center>"Hello"</center>
</BODY>
</HTML>

Output:
Assignment 8

Write HTML code to display text in different heading


size
Code:
<HTML>
<TITLE>DAVIM</TITLE>
<HEAD>RAVINDER</HEAD>
<BODY><H1>HELLO</H1>
<H2>HELLO</H2>
<H3>HELLO</H3>
<H4>HELLO</H4>
<H5>HELLO</H5>
<H6>HELLO</H6>
</BODY>
</HTML>
Output:
Assignment 9

Write html code to display image


Code:
<HTML>
<TITLE>DAVIM</TITLE>
<HEAD>RAVINDER</HEAD>
<BODY>
<img src="C:\Users\rohit\OneDrive\Pictures\IMG-20220926-WA0041" width=400 height=200>
</BODY>
</HTML>

Output:
Assignment 10

Code:
<HTML>
<HEAD>RAVINDER</HEAD>
<TITLE>DAVIM</TITLE>
<A HREF = "rohit.HTML"> "rohit.HTML"</A>
</HTML>

Output:
Assignment 11

Write HTML code to create table for record of 3


students as given below
Roll no. Name Course Phone no. Address

Code:
<HTML>
<TITLE>DAVIM</TITLE>
<table border=1>
<th>Roll no.</th>
<th>Name</th>
<th>Course</th>
<th>Phone no.</th>
<th>Address</th>
<tr>
<td>1</td>
<td>RAVINDER</td>
<td>bba cam</td>
<td>0123456789</td>
<td>faridabad</td>
</tr>
<tr>
<td>2</td>
<td>AKANSHA </td>
<td>bba cam</td>
<td>0123456789</td>
<td>faridabad</td>
</tr>
<tr>
<td>3</td>
<td>KHUSHI</td>
<td>bba cam</td>
<td>0123456789</td>
<td>faridabad</td>
</tr>
</table>
</HTML>

Output:
Assignment 12

Write HTML code to create ordered list of courses of


DAVIM.

Code:
<HTML>
<HEAD>
<CENTER><U><STRONG>COURSES OF DAVIM</STRON></U></CENTER>
<OL>
<LI>BBA(G)</LI>
<LI>BBA(CAM)</LI>
<LI>BBA(II)</LI>
<LI>BBA(BE)</LI>
<LI>BCA</LI>
<LI>MBA</LI>
<LI>MCA</LI>
</OL>
</HTML>
Output:
Assignment 13

Write HTML code to create unordered list of activities at


DAVIM
Code:
<HTML>
<HEAD>
<CENTER><U><STRONG>ACTIVITIES AT DAVIM</STRON></U></CENTER>
<UL>
<LI>ALUMNI MEET</LI>
<LI>CONVOCATION</LI>
<LI>ATHLETE MEET</LI>
<LI>NSS</LI>
<LI>DIWALI FAIR</LI>
</UL>
</HTML>

Output:
Assignment 14

Write HTML code to create nested list given below


INTERNET CLUB
1) ADVISORS
 Pranjal
 Priya
 Janaki
2) COMMITTEE MEMBERS
 Divya
 Hemant
 Vishal
Code:
<HTML>
<HEAD>
<CENTER><U><STRONG>INTERNET CLUB</STRON></U></CENTER>
<OL>
<LI>ADVISORS</LI>
</OL>
<UL>
<LI>Pranjal</LI>
<LI>Priya</LI>
<LI>Janaki</LI>
</UL>
<OL>
<LI>COMMITTEE MEMBERS</LI>
</OL>
<UL>
<LI>Divya</LI>
<LI>Hemant</LI>
<LI>Vishal</LI>
</UL>
</HTML>

Output:
Assignment 15

WEBSITE
OF
MDU
Webpage of “MDU” to display
Home
Coding:
<HTML>
<BODY bgcolor=brown></body>
<TITLE>MDU.org</TITLE>
<IMG SRC="C:\Users\rohit\OneDrive\Desktop\download.jpeg" WIDTH=100HEIGHT=100>
<HEAD><B><U><CENTER><FONT SIZE=15>M D U</FONT></CENTER></U></B>
</HEAD>
<br>
</br>
<center><font size=5>
<a href="Home.html">Home</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="About Us.html">About Us</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="Programmes.html">Programmes</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="Learning Centre.html">Learning Centre</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="Visual Arts Gallery.html">Visual Arts Gallery</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="Notices.html">Notices</a>
</center></font>
<br></br>
<CENTER><IMG SRC="C:\Users\rohit\OneDrive\Desktop\1681108444phpeCK8xT.jpeg"
WIDTH=1000HEIGHT=370></CENTER>
<br></br>

<p><CENTER><FONT SIZE=4>Maharshi Dayanand University, Rohtak, established in 1976 as a residential University with the
objective of promoting inter-disciplinary higher education and research with special emphasis on studies of environmental,
ecological and life sciences, is making rapid progress to emerge as a leading educational institution of the nation. Now it is a
teaching-cum-affiliating university with a formidable track record in academics, research, literacy and cultural activities, and sports.
Currently, there are 38 Post-Graduate Departments and 11 Faculties in the University. Territorial jurisdiction of the University
extends to 10 districts of Southern Haryana.</FONT></CENTER></p>
<P><CENTER><FONT SIZE=4>Recently University has signed MoU with National Skill Development Corporation to facilitate
skill development of University students. We are all set to emerge as a pioneer University with overall excellence and global
outlook and deep commitment towards social and community causes in times to come. Welcome to this vibrant Institute of Higher
Learning, and realize your academic dreams.
</FONT></CENTER></p>
<br></br>
<center>
<TD><TR>
<h1>Announcement</h1>
<UL>
<LI><A HREF="MDU Parking Notice.HTML">MDU Parking Notice</A></LI>
</TD></TR></TABLE>
<TD><TR>
<h2>Highlights</h2>
<UL>
<LI><A HREF="Member's Habitat.HTML">Member's Habitat</A></LI>
</TD></TR></TABLE>
<br></br>
</center>
<center><font size=5>
<a href="Aims And Objectives.html">Aims And Objectives</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="Location.html">Location</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="Contact Us.html">Contact Us</a>
</center></font>
</HTML
Output:
Webpage of “MDU” to display
About Us
Coding:
<HTML>
<BODY bgcolor=brown></body>
<TITLE>indiahabitat.org</TITLE>
<IMG SRC="C:\Users\rohit\OneDrive\Desktop\download.jpeg" WIDTH=100HEIGHT=100>
<br></br>
<HEAD><B><U><align="LEFT"><FONT SIZE=8>About IHC</FONT></U></B>
<br></br>
<CENTER><IMG SRC="C:\Users\rohit\OneDrive\Desktop\1681108444phpeCK8xT.jpeg"
WIDTH=1000HEIGHT=450></CENTER>
<br></br>
<h1><u><b>About MDU</h1></u></b>
<p>aharshi Dayanand University, ab initio established as Rohtak University, Rohtak, came into existence by an Act
No. 25 of 1975 of the Haryana Legislative Assembly in 1976 with the objective to promote inter-disciplinary higher
education and research in the fields of environmental, ecological and life sciences. It was rechristened as Maharshi
Dayanand University in 1977 after the name of a great visionary and social reformer, Maharshi Dayanand. It had a
unitary and residential character in its nascent stage, but became an affiliating University in November 1978. The
University secured the recognition of University Grants Commission – the higher education regulatory body of India
- for central Govt. grants in 16 Mar, 1979.</p>
<h1><u><b>The Mission</h1></u></b>
<p>To bring a holistic approach to problem solving in areas of environmental and regional planning, energy
efficiency, appropriate technology options, transport and communication, lifestyle choices, socio-cultural linkages
and information technology.</p>
<h1><u><b>Concept of the Symbol</h1></b></u>
<p>The symbol has three basic elements. The downward pointing triangle within the male figure encircled by the
words “MDU”.</p>
<p>The figure of the man, developed from a prototype of a rock painting from Bhimbetka in Madhya Pradesh,
represents the anthropomorphic personification of Shiva, the Creator - Demiurge, as the Divine Archer. </p>

<p>The bow in his left hand has been deleted for purpose of design. The figure depicts the phenomenon of the
expanding form, quintessential to the eternal repose, peace and order in the universe.</p>
<p>The downward pointing triangle is a female symbol representing “Shakti”. It is based on “Shri Yantra”, a
general term for instruments of worship which include geometric forms. An amalgamation of the two forms
symbolize the creative activity of the cosmic male and female energies in successive stages of evolution. It is the
archetypal marriage represented in abstract form, a key to the secret of cosmic and universal harmony. </p>
<p>Encircling them is the Universe, shown by the typographical use of the words “MDU” placed in a perfect circle.
The symbol in its entirety would represent the aim of the MDU to resolve and restore at every level - Environmental
and Ecological, a balanced, harmonious and improved way of life.</p>
Output:
Webpage of “MDU” to display
Programmes
Coding:
<HTML>

<BODY bgcolor=brown></body>

<TITLE>MDU.org</TITLE>

<IMG SRC=ihclogo.png WIDTH=100HEIGHT=100>

<br></br>

<HEAD><B><U><align="LEFT"><FONT SIZE=8>Programmes</FONT></U></B>

<br></br>

<CENTER><IMG SRC=prg7.jpg WIDTH=1000HEIGHT=450></CENTER>

<br></br>

<h1><u><b>Calender of Events (13-15 November)</h1></u></b>

<br></br>

<h3><u><b>MUSIC & DANCE (13th November 2019)</h3></u></b>

<p>Samyog-Viyog - An evening of music and dance with Kathak Guru, Dr. Shovana Narayan and Hindustani classical
vocalist, Vidushi Sunanda Sharma.<p>

<p><b>Venue : The Stein Auditorium at 07:00 pm</p></b>

<br></br>

<h3><u><b>TALK (13th November 2019)</h3></u></b>

<p> A talk on "TLI Pedagogics" by Marion Hopfgartner, educationist and author of 6 books on early childhood
education.</p>

<p><b>Venue : Casuarina at 07:00 pm</p></b>

<p>VAAK Series. Pravasi Lekhan Ka Antlok Aur Bharatiya Alochana Vivek. Panellists: Divya Mathur, Susham Bedi,
Pushpita Awasthy and Ajai Verma. All panellists are diaspora writers. Collab. Bharatiya Jnanpith</p>

<p><b>Venue : Gulmohar at 07:00 pm</p></b>

<br></br>

<h3><u><b>TALK (14th November 2019)</h3></u></b>


<p>Wild Himalaya. Author Stephen Alter will introduce his most recent book ‘Wild Himalaya: A Natural History of the
Greatest Mountain Range on Earth’. Collab. The Himalayan Club</p>

<p><b>Venue : Gulmohar at 07:00 pm</p></b>

<br></br>

<h3><u><b>FILM CLUB SCREENING(14th November 2019)</h3></u></b>

<p>Captain Corelli’s Mandolin (Eng,Greek,German,Italian with Eng subtitles/2001/132 mins). Dir. John Madden. When
a fisherman leaves to fight with the Greek army during World War II, his fiancée falls in love with the local Italian
commander. Collab. The Embassy of Greece & Indo Hellenic Friendship League </p>

<p><b>Venue : The Stein Auditorium at 07:00 pm</p></b>

<br></br>

<h3><u><b>FILM CLUB SCREENING</b></u></h3>

<p>Meghe Dhaka Tara (35 mm/Bengali with Eng subtitles/1960/134 mins). Dir. Ritwik Ghatak. Neeta is the beautiful
daughter of a middle-class refugee from East Pakistan. She sacrifices everything for her family while they exploit her
goodness and take advantage of her. Collab. Directorate of Film Festivals, Ministry of I & B, Govt. of India (DFF) </p>

<p>Venue : The Stein Auditorium at 07:00 pm</p>

<br></br>

<h3><u><b>MUSIC</b></u></h3>

<p>A Fusion of Hindustani classical music and music from the region around Persia by Boustan, an ensemble of
musicians featuring Shailendra Wakhlu (Guitar), Rahul Sharma (Tabla), Delphine Moulet (Flute) & Ejaz Hussain
(Sarangi).</p>

<p><b>Venue : Amaltas at 07:00 pm</b></p>

Output:
Webpage of “MDU” to display
Learning Center
Coding:
<HTML>

<BODY bgcolor=brown></body>

<TITLE>indiahabitat.org</TITLE>

<IMG SRC=ihclogo.png WIDTH=100HEIGHT=100>

<br></br>

<HEAD><B><U><align="LEFT"><FONT SIZE=8>Learning Centre</FONT></U></B>

<br></br>

<CENTER><IMG SRC=hlc0.jpg WIDTH=1000HEIGHT=450></CENTER>

<br></br>

<h1><u><b>MDU Learning Centre</h1></u></b>

<br></br>

<p>The MDU Learning Centre was set up by the MDU in February 2002 to bring the world of IT to the under-privileged
and under-served children of Delhi. The initiative started with a seven-day programme on understanding computers that
was repeated several times over to include more and more children based on the positive response it received.</p>

<p>Extension Learning Centres were set up in partnership with NGOs working in different grassroot areas of Delhi to
enable these children to practice what they learnt at the HLC and to enable more children, particularly those who could
not come to the MDU, to explore the world of IT near their homes.</p>

<p>The MDU has since come a long way and now offers a three-months Basic Computer Course, an eight-month
Advanced Computer Course and an eight-month Basics of Skill Development Course in four streams (Accounting
Principles, Content Management System, Hardware & Networking, Visual Documentation). </p>

<p>Functional Communication in English is integrated into the curriculum of the Advanced Computer Course and Skill
Development Courses conducted at the MDU.</p>

<p>Basic Computer course is now conducted only in the Extension Learning Centres in various under-served areas.</p>

<p><b>Since 2012 when we started the Skill Development Course, 235 students have completed the various
streams.</p></b>

<p>Certificates of completion are provided after the students take online examinations at the MDU. Mock exams are held
to familiarise the students with the online process. </p>
<p>Every effort is made to take a dynamic approach, upgrade the content and bring the students on par with newer and
relevant technological advances.

A committed team of in-house professionals are involved in the teaching process.</p>

</HTML>

Output:
Webpage of “IHC” to display
Visual Arts Gallery
Coding:
<HTML>

<BODY bgcolor=brown></body>

<TITLE>indiahabitat.org</TITLE>

<IMG SRC=ihclogo.png WIDTH=100HEIGHT=100>

<br></br>

<HEAD><B><U><align="LEFT"><FONT SIZE=8>Visual Arts Gallery</FONT></U></B>

<br></br>

<CENTER><IMG SRC=v1.jpg WIDTH=1000HEIGHT=450></CENTER>

<br></br>

<h1><u><b>About VAG</h1></u></b>

<br></br>

<p>Visual Arts Gallery of the MDU has come a long way since its inception in the July 2000. The MDU has established
itself as a locus, a platform for cultural activity, where there is an opportunity to display creative talent or witness
excellence on display. The Visual Arts Gallery has been a hub of uninterrupted art activity spanning different genres, and
crossing many a boundaries. From the visual art to seminars, and now traversing the path of the digital world, the Visual
Arts Gallery has a finger on the pulse of contemporary art trends leading to a sharing and union of energies and ideas. The
Gallery works in a multi-dimensional manner. From showcasing two-dimensional works to three-dimensional works, we
are trying to bring the best of art traditions both nationally and internationally. There is also an interface between what is
termed 'high art' to popular art traditions, very much in keeping with the philosophy and vision of the MDU.</p>

<p>In the last fourteen years, as perhaps the largest non-profit centre in the country, we have been supporting art, crafts,
material culture, emerging talent, and also the medium of photography. The immediacy of the medium of photography
forms an inherent trajectory of the visual arts. Photography is now a serious art practice and we have hosted works by
some of the well-known photographers of the country, namely Amit Pasricha, Amit Mehra, Prabir Purkayastha, among
others. Their photo exhibits indeed herald the coming age of photography, and speak of the new levels to which
photography is being taken. </p>

<br></br>

<IMG SRC=vagsmall.jpg WIDTH=400HEIGHT=400>

<IMG SRC=opcsmall.jpg WIDTH=400HEIGHT=400>

<IMG SRC=lobbiessmall.jpg WIDTH=400HEIGHT=400>


</HTML>

Output:
Webpage of “MDU” to display
Notices
Coding:
<HTML>

<BODY bgcolor=brown></body>

<TITLE>.org</TITLE>

<IMG SRC=ihclogo.png WIDTH=100HEIGHT=100>

<br></br>

<HEAD><B><U><align="LEFT"><FONT SIZE=8>Notices</FONT></U></B>

<br></br>

<CENTER><IMG SRC=notices.jpg WIDTH=1000HEIGHT=450></CENTER>

<br></br>

<h1><u><b>Notice Details</b></u></h1>

<TD><TR>

<UL>

<LI>IHC PARKING NOTICE</LI>

<LI>CLEAN AIR-INDIA:A PHOTO CONTEST</LI>

</UL>

</HTML>
Output:
Webpage of “MDU” to display IHC
Parking Notice
Coding:
<HTML>

<BODY bgcolor=brown></body>

<TITLE>MDU.org</TITLE>

<IMG SRC=ihclogo.png WIDTH=100HEIGHT=100>

<br></br>

<HEAD><B><U><align="LEFT"><FONT SIZE=8>IHC Parking Notice</FONT></U></B>

<br></br>

<CENTER><IMG SRC=notices.jpg WIDTH=1000HEIGHT=450></CENTER>

<br></br>

<h1><b>FOR SURFACE PARKING</b></h1>

<p>We are pleased to inform you that we are increasing surface parking area for Members' self-driven cars.</p>

<p>Members may collect parking stickers from IHC Information Cell, by giving a written request along with the
copy of RC of the vehicle for which sticker is sought. Only 2 car parking stickers per member are issued.</p>

<p>From 15th of October 2014, Gate 3A, (Vardhman Marg exiting towards Meharchand Market) shall be open
for Exit (only). It will be one way traffic from Gate No. 1 to Gate No. 3A. However, if exiting from basement
parking near Gate 1, you could take a left turn for Exit from Gate 1 itself, onto Lodhi Road.</p>

<p>Vehicles parked on surface shall have to Exit from gate No. 3A only.</p>

<br></br>

<h1><b>PARKING MANAGEMENT BETWEEN GATE NO.1 TO GATE NO. 3A</h1></b>

<OL>

<li>Only goods vehicle and two wheelers, which are required to be parked near core 1b, will be allowed from
gate no. 3a, from 06.01.2014 onwards. Entry/exit of all other vehicles will be strictly prohibited. </li>

<li>The vehicles with member’s sticker only will be allowed to park in the reserved space earmarked for self-
driven member’s car parking only.</li>

</OL>

<p>The member’s stickers for four wheelers can be taken form IHC information centre, by submitting a copy of
RC of vehicle, in case the vehicle is in member’s or their spouse name. In case the vehicle belongs to the
company/institution, a covering letter mentioning the same along with the copy of RC will be required to get the
sticker. </p>

<br></br>

<h1><b>BASEMENT PARKING</h1></b>

<p>The basement parking areas in p1 and p2 are becoming increasingly overcrowded and it has been observed
that one of the reasons is that vehicles are being parked for an indefinite duration, even for days & weeks together,
and quite often without seeking permission or providing information on the same. We have been advised by the
police and security that this constitutes a security risk apart from causing inconvenience to the genuine users of
IHC. </p>

<p>In order to curb this malpractice of parking vehicles overnight (both two-wheelers and four-wheelers), it has
been decided that a charge of rs.200 per night for four-wheelers and rs.100 for two-wheelers will be levied w.e.f.
01.06.10. permission for parking the vehicle overnight shall have to be taken from IHC. It may however be noted
that parking of vehicles is at owner’s risk.</p>

</HTML>

Output:
Webpage of “MDU” to display
Member’s Habitat
Coding:
<HTML>

<BODY bgcolor=brown></body>

<TITLE>indiahabitat.org</TITLE>

<IMG SRC=ihclogo.png WIDTH=100HEIGHT=100>

<br></br>

<HEAD><B><U><align="LEFT"><FONT SIZE=8>Member's Habitat</FONT></U></B>

<br></br>

<CENTER><IMG SRC=ihclogo.png WIDTH=200HEIGHT=200></CENTER>

<br></br>

<br></br>

<center><h1><b>Membership Number (Ex:A-0001)</center></h1></b>

<br></br>

<br></br>

<center><h1><b>Password / OTP</b></h1></center>

<center>

<table border=1>

<th>Login</th>

<br></br>

<br></br>

</center>

<p><center>Note: We have upgraded our system. Click here to get the new password if haven't done already. For Login
related issues 011-43662018

For more information please contact IHC Information Centre 011-43662045, 46 or write to us at
membersinfo@indiahabitat.org</p></c

enter>
</HTML>

Output:
Webpage of “MDU” to display
Aims And Objectives

Coding:
<HTML>

<BODY bgcolor=brown></body>

<TITLE>indiahabitat.org</TITLE>

<IMG SRC=ihclogo.png WIDTH=100HEIGHT=100>

<br></br>

<HEAD><B><U><align="LEFT"><FONT SIZE=8>Aims And Objectives</FONT></U></B>

<br></br>

<UL>

<LI>Develop an integrated physical environment in which various professions and institutions dealing with different
facets of habitat and habitat related environmental issues would function, interact and attempt to resolve habitat related
problems in a coordinated manner.</LI>

<LI>Promote awareness in regard to habitat related environmental issues including water, air, noise and waste pollution,
energy and its conservation, water and human waste management and other such matters.</LI>

<LI>Promote better urban and rural settlements relevant of the Indian social, cultural and economic context and related to
the lifestyle of its people.</LI>

<LI>Inculcate better awareness and sensitivity in regard to all aspects of creative human activity including the
significance of art in habitat.</LI>

<LI>Document all relevant information pertaining to habitat, human settlements and environmental issues.</LI>

<LI>Advise and if needed, assist the Government in the formation and implementation of policies relating to habitat, and
human settlements.</LI>

<LI>Promote education, research, training and professional development on habitat and human settlement and
environment related issues.</LI>

<LI>Organise and promote conferences, seminars, lectures, public debates and exhibitions in matters relating to habitat,
human settlements and environment.</LI>

<LI>Offer awards, prizes scholarships and stipends in furtherance of the objectives of the Centre.</LI>

<LI>Offer awards, prizes scholarships and stipends in furtherance of the objectives of the Centre.</LI>
<LI>Acquire, hold, improve and develop lands and construct buildings and related facilities on behalf of members of the
Centre.</LI>

<LI>Organise and maintain residential hostels , restaurants and other amenities for its members, their guests and non-
members invited by the Centre.</LI>

<LI>Maintain and keep in good repair all buildings and common services.</LI>

<LI>Constitute or cause to be constituted Regional Centres at convenient places to promote the objectives of the
Centre.</LI>

<LI>To do such all other lawful activities as the Centre considers conducive to the attainment of all or any of the above
objectives.</LI>

</UL>

</HTML>

Output:
Webpage of “MDU” to display
Location

Coding:
<HTML>

<BODY bgcolor=brown></body>

<TITLE>indiahabitat.org</TITLE>

<IMG SRC=ihclogo.png WIDTH=100HEIGHT=100>

<br></br>

<HEAD><B><U><align="LEFT"><FONT SIZE=8>Location</FONT></U></B>

<br></br>

<CENTER><IMG SRC=location.jpg WIDTH=1000HEIGHT=450></CENTER>

<br></br>

<h2><b><u>Location and Layout of IHC</h2></b></u>

<CENTER><IMG SRC=IHCMAP.jpg WIDTH=750HEIGHT=450></CENTER>

<br></br>

<h3><b>MDU, Lodhi Road, New Delhi - 110003</h3></b>

<ul>

<li>Phone : +91-011-24682001-09</li>

<li>Phone : +91-011-43662054</li>

<li>Fax : +91-011-24682010</li>

<li>Email : info@indiahabitat.org</li>

</HTML>
Output:
Webpage of “MDU” to display
Contact Us

Coding:
<HTML>

<BODY bgcolor=brown></body>

<TITLE>indiahabitat.org</TITLE>

<IMG SRC=ihclogo.png WIDTH=100HEIGHT=100>

<br></br>

<HEAD><B><U><align="LEFT"><FONT SIZE=8>Contact Us</FONT></U></B>

<br></br>g

<CENTER><IMG SRC=ihcout.jpg WIDTH=1000HEIGHT=450></CENTER>

<br></br>

<center>

<ul>

<li><b>Address : MDU, Lodhi Road, New Delhi - 110003</b></li>

<li><b>Phone : +91-011-24682001-09</b></li>

<li><b>Phone : +91-011-43662054</li></b>

<li><b>Fax : +91-011-24682010</li></b>

<li><b>Email : info@indiahabitat.org</li></b>

</ul>

</center>

</HTML>
Output:
Thank
You

You might also like