You are on page 1of 54

FLOWER

PROJECT
Submitted to: by:-

Submitted

Miss.Alka

Parminder Kaur
Roll No:-4001

Harjit Kaur
Roll No:-4007

P.G.D.C.A

INDEX

ACKNOWLEDGEMENT
INTRODUCTION SECTION
ABOUT PROJECT
CODING SECTION AND
PRESENTING PROJECT

ACKNOWLEDGEMENT
It is our pride to express our heart felt gratitude to our venerate
guides MISS.ALKA, whose guidance the project is carried out
successfully. We are grateful to them carried out successfully. We are
grateful to them for their regular encouragement, suggestions and time to
time consolation at every stage of our Endeavour.
We are indebted to the principal of our college MRS.NEENA
GARG for her hexavalent co-operation and help at each step during
project.
Finally, how can we forget to acknowledgement our parents for
their love and moral support without which we could not have been able
to fight out all the odds during the project.

Parminder Kaur
Harjit Kaur

LANGUAGE USED: HTML


Hypertext Markup language (HTML) is a method where ordinary text can be converted into
hypertext. It is a special code includes controlling the layout and appearance of text. Technically,
HTML is not a programming language. It combines instruction within data to tell a display
program called browser, how to render the data that document contains.Tim Berners Lee
development HTML in early 1990 at CERN(Conseil European de La Recherche Nucleaire ), the
European particle Physics Laboratory in Geneva, Switzerland. HTML is a public domain and not
owned by anybody . The w3c Is the body, which controls the content provides and other leading
experts who provide input on web accessibility and internationalization.

PRINCIPAL OF WEB
DESIGNING
The principal of web Design help you plan and develop well-designed web sites that
combine navigation with the balanced use of graphics, text, and color . You will learn how to
create web sites that let users easily and quickly access your information, regardless of browser
type, connection speed, or computing platform. Whether you will be able to build sites from
scratch or redesigning an existing site.
The web design is intended first the individual that has knowledge of HTML and wants to
apply those skills to the task of designing attractive, information Web pages. You should able to
build a simple Web page that include text. Hyperlinks and graphics. Additionally you should be
comfortable working with computers and know your way around your operating system, whether
Windows, Macintosh or UNIX.

Apply your HTML skills to building designed Web pages.


Effectively the effects of browser and computing platform on your design choices

Feature of Web Design:-

1. In Web designing us can used (gif,jpg) file multiple images along with timing
information about

the images. This means you can

build animations

continuously, creating the illusion of motion.


2. ASCII the American standard code for information Interchange is the most
common format for text files.

3. The 216 color shared by pc and Macintoshes. These color display properly across
both platform without dithering.
4. The storage area for Web page and images is Cache & drive Cache.
5. We can use Cascading Style Sheet.
6. In Web design we can used complete URL color (Uniform Resource Locator)
7. To access browser uses to access the file, server or domain name, the relative,
path and the file name.
8. In web design we can used SGML(Standard Generalized Markup Languages).
9. The web provides an instantaneous communication system.
10. The Adobe Acrobat portable Document Format (PDF) platform independent
means to exchange document among Macintosh, windows & UNIX systems if
you need to put document on your Web sites that will printed on your visitors
printers, your needs are best served by Adobe Acrobat. This will be installed on
the Web browser event.
11. The Web short for World Wide Web. Sometimes called the www or (incorrectly)
the Net, the web is a global-spanning hypertext network consisting of tens of
million of WebPages.

HARDWARE REQUIRMENTS
A) Hardware Requirements

An Pentium bases pc

16 MB-RAM

Color Monitor

101 Keys Keyboard

CD-ROM

2 MB of Free Hard Disk Space

Scroll mouse

Generic Keyboard

SOFTWARE TOOLS USED


The tools used in the creation of this website are as :-

FRONTPAGE

NOTEPAD

MS-PAINT

MS-WORD

INTERNET EXPLORER

INTRODUCTION TO HTML
HYPERTEXT MARKUP LANGUAGE

Basic Concept: If the information has to be stored up on a central computer, it must be created
first. Information can be stored in the form of files on a computer using special software program
or programming environments.
An HTML document is simply a text file that contains the information you want to
public. It also contains embedded instructions called elements that indicate how a web browser
should prevent the documents.
e.g.
<html>
<head><title> ..</title></head>
<body>.</body>
</html>
Text which are underline are known as elements. HTML elements generally consist of a
pair of angle bracket surroundings some text that is called tags. The end tag (</tag>), except that
it has a slash(/) in it, as shown here:
<tag>

start tag

..
..
</tag>

end tag

a) Singular Tags
b) Paired Tags

Features of HTML:
HTML is a Hyper Text Markup Language.
HTML is a structured language, we can say this from a preceding discussion, HTML tags
have a well defined syntax and HTML document have a formal structure.
HTML is not a WYSIWYG design language.
HTML is not a programming language.
HTML is not extensible.
HTML is not complete.
HTML is not all you need to know to create good web pages.

HTML RULES & GUIDELINES:


HTML documents are structured documents.
Elements names are not case sensitive.
Attribute names are not case sensitive.
Attribute values should be quoted.
Elements name cannot contain space.
Browsers collapse and ignore space characters.
Browsers ignore unknown elements and attributes.

Example:
<html>
<head>
<title>My First Page</title>

</head>
<body bgcolor = burlywood text = red >
<center> <h2> HTML</h2></center>
<hr align=center size=4 width=100 color=black>
<b><i><u> Hyper Text Markup Language</b></i></u>
<br>
<font face= lucida handwriting size=4 color=blue>
USED FOR BUILDING WEB PAGES</font>
</body>
</html>

Output

LISTS
TYPE OF LISTS:
There are three types of lists :
A. Unordered Lists
B. Ordered Lists
1. Unordered Lists:
An unordered list starts with the tag <ul> and ends with </ul> reach list item starts with the
tag <li> and ends with </li> tag we can use type attributes.
e.g.
<ul type=fillround>
<li>.
<li>.
</ul>
Type has two values:
Fillround and Square
2. Ordered Lists:
An ordered lists starts with <ol> tag and ends with </ol> tags reach list item start <li> tag.
Type, Start and Values we can use this as attributes with <ol> tag.
e.g.
<ol type=1>
<li>.
<li>.

</ol>

DEFINITION LISTS:
Definition list values appear within tags <dl and </dl>. Definition lists consists of two parts:
Definition term: appears after tag <dt>
Definition description: appear after tag <dd>
For e.g.
<html>
<head>
<title>Definiton Lists</title>
</head
<body>
<dl>
<dt>Keyboard
<dd>An input device
<dt>Printer
<dd>An output device
</dl>
</body>
</html>

Output:

e.g.
<html>
<head>
<title>Lists</title>
</head>
<body bgcolor=red>
<h2>Unordered Lists</h2>
<ul type=square>
Some of these products include
<li>Monitor

<li>Floppies
<li>Hard disk
</ul>
<h2>Ordered list</h2>
<ol type=1>
Some of these products include
<li>Monitor
<li>Floppies
<li>Hard disk
</ol>
<h2>Definition list</h2>
<dl>
<dt>Keyboard<dd>An input device
<dt>Printer<dd>An input device
</dl>
</body>
</html>

Output:

GRAPHICS AND TABLE


Adding Graphics to HTML document:
Other than text, HTML allows placing static and / or animated images in HTML pages.
HTML accepts two picture formats .gif and .jpeg using tools images can be created to suit the
requirements to web page and saved in these formats.
Images can be inserted into web page using the tag<img> which takes the name of the image
file as an attribute.

Various Attributes:
The <img> tag takes following attributes:
ALIGN: Controls alignment of the text.
VALUES: Top, Left, Middle, Center, Bottom, right
BORDER: Specifies the size of the border.
WIDTH: Specifies width of the image.
HEIGHT: Specifies the height of the image.
e.g.
<html>
<head>
</title> Working with images</title>
</head>

<body> bgcolor=burlywood>
<center>
<img border=3 src=window98.jpg width=200 height=200 align=center>
</center>
</body>
</html>

Output:

TABLES
A table is a two dimensional matrix, consisting of rows columns. Tables are intended for
displaying data in columns on a web page. All table related tags are included between the
<table> and </table> tags. Each row of table is described between <tr> and </tr> tags. Each
column of table is described between <td> and </td> tags. Table rows can be of two types:
HEADER ROWS: A row that spans across columns of table and is defined using <th> and
</th> tags.

DATA ROWS: Individual data cells placed in horizontal plane creates a data row.
Various Attributes:
Various attributes that can be included in TABLE are:
ALIGN: Horizontal alignment.
VALLIGN: Vertical alignment.
BORDER: Controls the border thickness in pixels.
CELL PADING: Control the distance between data and boundaries of the cells.
e.g.
<html>
<head>
<title>Tables</title>
</head>

<body bgcolor=burlywood>
<center>
<table border=5 width=50% cellpadding=10 cellspacing=10>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr align=center>
<td>Ram</td>
<td>22</td>
</tr>
<tr align=center>
<td>Sham</td>
<td>23</td>
</tr>
</table>
</center>
</body>
</html>

Output:

USING COLSPAN AND ROWSPAN ATTRIBUTES:


<html>
<head>
<title>Col and Row span</title>
</head>
<body bgcolor=burlywood>
<center>
<table border=3 width=50% align=center>
<tr>

<th bgcolor=blue> Marks</th>


</tr>
<tr>
<th>Focpit</th>
<th>c++</th>
<th>Math</th>
</tr>
<tr align=center>
<td>Ram</td>
<td>45</td>
<td>56</td>
<td>6</td>
</tr>
<tr align=center>
<td>Sham</td>
<td>76</td>
<td>35</td>
<td>60</td>
</tr>
</table>
</center>

</body>
</html>

LINKING
HTML allows linking to other HTML documents as well as images clicking on section of text or
and image in one web page will open entire page or an image. The text or an image that provide
such linkage is called hyperlink of Hotspot. Browser distinguishes hyperlink from normal text.
Links are created in a web page by using <a> and </a> tags. The document to be navigated to
needs to be specified by using the href attribute of <a> tag.
Various Attributes:
By default color of hyperlink text is blue. It can be over by using following attribute with
<body> tag.
LINK: Changes color of hyperlink.
ALINK: Changes color of hyperlink that is activated.
VLINK: Changes the default color of hyperlinks that are already visited.

EXTERNAL LINKS:
Sometimes, a jump is read to a different document. Since the jump has to be targeted to a
specific location, we need to give its address and then jump to that address.
Syntax:
<a href=fileaddress ></a>
Sometimes a jump is read to a different location in a different document.
Syntax:
<a name=locationname ><a>
<a href=fileaddress#locationname ></a>

INTERNAL LINKS:
Sometimes a jump is red to different location in the same document. Since the jump has to be
targeted to a specific location, we need to identify a location with a name and then jump to
that location using the name.
We identify the location name by using NAME attribute of <a> tag.
Syntax:
<a name=locationname></a>
<a href=#locationname></a>

IMAGES AS A HYPERLINK:
Just as text can act a hyperlink. Image can be made hyperlink by enclosing an <img> tag
with in <a> and </a> tag.
Syntax:
<a href=path>
<img src=path>
</a>

FRAMES
Frames are defined as the portion of a web page into a number of images is known as frame.
We can create a number of images in a web page.
e.g.
<html>
<head>
<title>Frame</title>
</head>
<frameset rows=30%,70%>
<frame src=d:\html\table.html>
<frame src=d:\html\table.html>
</frameset>
</html>

Output:

Attributes of frames:
Noresize, Scrolling, Margin, Width, Margin

CODING
SECTION
AND
PRESENTING
PROJECT

<html>
<head>

</HEAD>

<body bgcolor="pink"><a href="welcome.html">back</A>


<font color= darkgreen size=5><marquee><h1>FLOWER VALLEY</h1></marquee>
<h1><U><I>INTRODUCTION</I></U></H1>
<p align=center>FLOWERS are the beautiful and valuable gift of GOD and NATURE to human
beings.FLOWERS have an important role in human life cycle.
Every occassion of human life is uncompleted without them.Flowers are with human beings
from birth to death to give peace,pleasure,calmness and happiness and unlimited store of joy
forever.
Flowers are with human in every occassion of happiness to share the heart feelings as well as in
sorrow to give courage to fight against bad situations.
Flowers of various colors give their presence by following ways:
<ul><img border=3 width=100% height=90% src="FLR2020L.JPG">
<li>FLOWERS are the pre_eminent way to pay his/her respect to GOD,to take HIS blessings.

<li>FOR a poet,flower is a source of imagination and he explains his feelings by using flower as
a symbol.
<li>A flower also acts as a bridge for lover to define his emotions tp his beloved.
<li>A flower is a message of friendship in situation of quarrel.
<li>A flower is the best gift to someone by someone on any occassion.<br> </ul> </p>
<p align=center>
IF we pore over the flowers,we have to know that there are uncountable varieties of flowers
present on the earth.<br>some important are:
<ul>
<li><A HREF="amaryllis.htm">Amaryllis</A>
<LI><A HREF="aster.HTM">Aster</A>
<LI><A HREF="dahlia.HTM">Dahlia</A>
<LI><A HREF="foxgloves.HTM">Foxgloves</A>
<LI><A HREF="gladiolus.HTM">Gladiolus</A>
<LI><A HREF="hollyhock.HTM">Hollyhock</A>
<LI><A HREF="jasmine.HTM">Jasmine</A>
<LI><A HREF="lotus.HTM">Lotus</A>
<LI><A HREF="merigold.HTM">Merigold</A>
<LI><A HREF="ROSE_HTML.htm">Rose</A>
<LI><A HREF="sun flower.HTM">Sun Flower</A>
</UL> </font> <BODY> </HTML>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY bgColor=blue><A
href="intro.html">HOME</A>
<FONT color=white size=5>
<MARQUEE>
<H1>AMARYLLIS FLOWER</H1></MARQUEE>
<H1><I><B><U>
<P align=center>AMARYLLIS</U></B></I></H1><IMG height="90%"
src="amaryllis_files/amaryllis_belladonna.jpg" width="90%">
<P>Amaryllis is a beautiful plant widely known as BELLADONNA LILY or NAKED
LADIES. There is only one species of Amaryllis which originates from the SOUTH
AFRICA. Amaryllis is a bulbous plant. Its bulbs may reach to 5-10 cm in
diameter. The plant is recognized by several green leaves in the shape of strap.
In cold countries the leaves appear in the autumn or early spring dieing down by
late spring. The bulb is 'asleep' until late summer. When it produces on or two
naked stems with the height of 30-60cm tall. Each stem is topped by a cluster of
two to tweleve funnel _shapped white, pink,purple flowers with diameter of
6-10cm diameter. The flower have 6 similar petals which may be divided in to
three outer sepals and three inner petals. </P></FONT></BODY></HTML>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY bgColor=white><A
href="intro.html">HOME</A>
<FONT color=purple size=5>
<MARQUEE>
<H1>ASTER FLOWER</H1></MARQUEE>
<H1><I><B><U>
<P align=center>ASTER</U></B></I></H1>
<P>Being one of the representatives of the Asteraceae family ASTER symbolizes
LOVE, DAINTINESS and AFTERTHOUGHT. The ASTER is derived from the Latin word
"Star" and is related to the flower's star like head. This beautiful flower is
grown all over the world except AUSTRALIA and ANTARCTICA. The alternative name
of the flower is the Michaelmas daisy. This frost flower blossoms in late summer
or autumn. However the flower is commercially available during complete year and
imported from different sources. The aster falls into more than 600 species, but
not so many varieties delight people as cut flowers. Asters are grown in any
shade and color with exception of clear yellow and orange. Such colors of the
flowers as white, blue, purple and violet are predominant. As it was mentioned
ASTER as cut flower is available any time of the year and its life lasting when
cut is about 5-10 days. This flower is one of the most popular ones that are
used in various floral arrangements and numerous bouquets of any season. Their
bonus is fascinating color variety. <IMG height="80%"
src="aster_files/asterflower.jpg" width="80%"> </P></FONT></BODY></HTML>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY bgColor=pink><A
href="intro.html">HOME</A>
<FONT color=blue size=5>
<MARQUEE>
<H1>DAHLIA FLOWER</H1></MARQUEE>
<H1><I><B><U>
<P align=center>DAHLIA</U></B></I></H1>
<P><U>MEANING</U> : elegance and dignity.<BR>The flower got its name in honor of
the botanist Anders Dahi from SWEDEN ,who lived and worked in 18th century
.Dahlia is considered to be the national flower of MEXICO .It originated from
the mountainous places of MEXICO and GUATEMALE. Tday one can find about 30
species and 20 thousand cultivates of Dahlia .This amazing flower has gained an
immense popularity. Nowadays dahlia can be met in a vast array of colors and
shades . They are white , orange , purple , yellow , lavender , pink ,
bi_colored and variegatted blossoms , bronze , flame and red. <IMG height="90%"
src="dahlia_files/dahlia.jpg" width="90%"> </P></FONT></BODY></HTML>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY bgColor=brown><A
href="intro.html">HOME</A>
<FONT color=white size=5>
<MARQUEE>
<H1>FOXGLOVES FLOWER</H1></MARQUEE>
<H1><I><B><U>
<P align=center>FOXGLOVES</U><B></I></H1>
<P>The botanical name is Digitalis, meaning 'finger-like', in reference with the
ease a bloom can be fitted over a human fingertip. FOXGLOVES represents biennial
and perennial herbs of the genus Digitalis that includes more than 20 species.
The flower falls into the family Scrophulariacea.FOXGLOVE inhabit in Europe,
Western and Central Asia, and Northwestern Africa. The tubular flowers grow on a
tall spike. The popular species is the Common Foxglove, Digitalis purpurea that
grows in the North of the Unites States. It represents a striking biennial plant
that is used to serve as an ornamental plant. The flower of Common Foxglove
bears bell-resembling blossoms that produce a stiff cluster. The length of the
plant may reach up to 3 in. Its stalk can have up to 5 feet lengh.The flowering
time of foxglove is the whole summer season. It is available in white, lavender
and deep purple colors. The majority of the species have purple sports on
blossoms. <IMG height="85%" src="foxgloves_files/foxglove.jpg" width="95%">
</P></FONT>The flowering time of foxglove is the whole summer season. It is
available in white, lavender and deep purple colors. The majority of the species
have purple sports on blossoms.</B></B></BODY></HTML>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY bgColor=white><A
href="intro.html">HOME</A>
<FONT color=green size=5>
<MARQUEE>
<H1>GALDIOLUS FLOWER</H1></MARQUEE>
<H1><I><B><U>
<P align=center>GALDIOLUS</U></B></I></H1>
<P><U>MEANING </U>: strength and moral integrity, generosity, sincerity and
infatuation.<BR>It is the representative of the Iris family. The flower got such
name from the Latin word "Gladius" translated as 'Sword' with the reference of
the gladiolus leaves shape. Uncommon and bright with towering stems, this
August birth plant led to a lot of dramas of Roman Gladiators. It was believed
that the nosegay of gladioli makes its recipient to be overwhelmed with an
immense passion. The flower is available in the middle of summer. One can enjoy
its blooming in red, pink, yellow, cream, coral and even green colors. Its
hallmark is the vast array of shapes and heights. The cut plant will enjoy the
vase life for minimum 6 days. The classic flower spikes of gladiolus adorn
plenty of gardens. This pretty bloom makes one of the best bouquets. <IMG
height="90%" src="gladiolus_files/gladiolus2.jpg" width="70%">
</P></FONT></BODY></HTML>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY bgColor=white><A
href="intro.html">HOME</A>
<FONT color=brown size=5>
<MARQUEE>
<H1>HOLLYHOCK FLOWER</H1></MARQUEE>
<H1><I><B><U>
<P align=center>HOLLYHOCK</U></B></I></H1>
<P><U>MEANING</U> : Female ambition, fecundity, fruitfulness Having the
botanical name of Alcea rosea, HOLLYHOCK represents the genus Alcea from the
family Malvaceae( the mallow one). Its genus includes more than 60 species of
biennial or perennial herbaceous flowering plants. HOLLYHOCKS are the
inhabitants southwest and central Asia. They can be seen on railroads,
roadsides, free lots, and waste lands. The plants can reach the length of 3.5 m,
bearing wide, round and green leaves and a lot of blossoms in pink, deep purple,
red, white and yellow colors. The Hollyhocks stem is erect; sometimes it is
covered by hair. It bears flat coin-like seeds having the diameter of inches.
The flowering time is from the middle of summer till autumn. A colony of plants
will flower within 1,5-2 months. Afterwards every blossom produces a fruit with
a ring of about twenty seeds. These flat seeds are oval, being notched on one
side. The majority of Hollyhocks species make wonderful ornamental plants in
the garden and parks. <IMG src="hollyhock_files/alcea_rosea.jpg">
</P></FONT></BODY></HTML>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY bgColor=white><A
href="intro.html">HOME</A>
<FONT color=blue size=5>
<MARQUEE>
<H1>JASMINE FLOWER</H1></MARQUEE>
<H1><I><B><U>
<P align=center>JASMINE</U></B></I></H1>
<P><U>MEANING </U>: Grace and Elegance .<BR>Jasmine is a well_know flower
throught the world .Belonging to the OLIVE family. These attractive blooms are
worn by females in their hair in the regions of SOUTHERN &amp; SOUTHEAST ASIA.
The blooming time of the plant is in such seasons as summer or spring .It
usually flower half a year after being planted . <IMG height="80%"
src="jasmine_files/jasmine_flower.jpg" width="70%"> Jasmine are widely used as
the gardening flowers , house plants , and cut flowers .The flowers are highly
appreciated for their FRAGRANCE . That is why a lot of their species are used in
the manufacture of PERFUMES and INCENSE . By the way , JASMINE flower buds are
more fregrant than its blossoms . </P></FONT></BODY></HTML>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY bgColor=green><A
href="intro.html">HOME
</A><FONT color=white size=5>
<MARQUEE>
<H1>LOTUS FLOWER </H1></MARQUEE>
<H1><I><B><U>
<P align=center>LOTUS</U></B></I></H1><IMG height="80%"
src="lotus_files/water lilies.jpg" width="80%">
<P>Lotus scientifically known as NELUMBO NUCIFERE is the national flower of
INDIA. It is a sacred flower and occupies a unique position in the art and
mythology of ancient INDIA has been auspicious symbol of INDIAN culture since
time immemorial.The lotus symbolises DIVINITY, FERTILITY, WEALTH, KNOWLEDGE,
and
not to forget enlightment.Lending to its uniqueness , the flower grows in MURKY
WATER and rises on a long stalk above the surface to bloom glorious . It is also
a symbol of TRIUMPH , since the LOTUS is rooted in the mud and can survive to
regerminate for thousands of years . It represent long LIFE , HONOR ,and GOOD
FORTUNE . Untouched by the impurity , LOTUS symbolises the PURITY OF HEART and
MIND. </P></FONT></BODY></HTML>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY bgColor=pink><A
href="intro.html">HOME</A>
<FONT color=green size=5>
<MARQUEE>
<H1>MERIGOLD FLOWER</H1></MARQUEE>
<H1><I><B><U>
<P align=center>MERIGOLD </U></B></I></H1>
<P><U>Other Names</U> : caltha , ganda , gold bloom , holligold ,
marybud.<BR><U>Other Species</U> : calendula arvensis , canlendula bicolor etc
some of the other species of merigold. <BR>MERIGOLD is cultivated throughout
INDIA . It is widely grown in the vally of flowers , RANTHAMBORE NATIONAL PARK
in INDIA . Merigold is used for stomach upset , ulcers , eye infections and for
wond healing.It is antiseptic .Bright yellow and orange merigold flowers are
used to make garlands . They are used to decorate the religious places . <IMG
height="70%" src="merigold_files/marigolds2.jpg" width="70%"> MERIGOLD were
first discovered by the Portuguesl in central America in the 16th century.
Merigold are hardy , annual plants and are great plants for cheering up any
garden. Merigold comes in different colors. Yellow and Orange being the most
common .<BR><U>IMPORTANCE</U> : it is offered to the GOD and GODDESS on the
DURGA PUJA. </P></FONT></BODY></HTML>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY bgColor=white><A
href="intro.html">HOME</A>
<FONT color=red size=5>
<MARQUEE>
<H1>ROSE FLOWER</H1></MARQUEE>
<H1><I><B><U>
<P align=center>ROSE</U></B></I></H1>
<P>To the Greek the rose is a symbol of passion.It is believed that Aphrodite
the goddess of love ,gave a rose to her son, Eros_ the god of love . The Rose is
the birth flower of june and is rich with history and meaning , no other bloom
can boast of . With over a hundred species of wild roses in existence ,roses
symbolize love and passion . However, the flower meanings change according to
the color and number of steams in a bouquet, expressing a secret language of
love. <IMG height="90%" src="ROSE_HTML_files/red_roses.jpg" width="90%">
<UL>
<LI><U>RED ROSE</U> : passion , love
<LI><U>PINK</U> : please believe me
<LI><U>LIGHT PINK</U> : admiration ,sympathy
<LI><U>YELLOW</U> : jealousy , infidelity
<LI><U>WHITE</U> : innocence ,purity
<LI><U>GREEN</U> : calm
<LI><U>BLUE</U> : mystery
<LI><U>PURPLE</U> : protection
<LI><U>BURGUNDY</U> : beauty
<LI><U>ORANGE</U> : you are my secret love<BR></LI></UL><BR><U><I>FLOWER
MEANING
OF ROSE</I></U> : symbol of beauty and love. </FONT></BODY></HTML>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY bgColor=orange><A
href="intro.html">HOME</A>
<FONT color=green size=5>
<MARQUEE>
<H1>SUN FLOWER</H1></MARQUEE>
<H1><I><B><U>
<P align=center>SUN FLOWER</U></B></I></H1>
<P>The sunflower represent an annual plant which comes in the Asteraceae family
. Its hall mark is alarge flower head which may have up to 30 cm in diameter the
blooms stem can reach up to 3 meters tall its names comes from the to Greek
words 'Helios' , which means "SUN" , and 'Anthos' which means "FLOWER" . The
bloom has its origin from North America. The sunfower is widely grown for its
seeds which are used for oil manufacture. <IMG height="90%"
src="sun flower_files/sun flowers.jpg" width="90%"> The attractive shades and
colors of sunflower make it a great mass or focal flower in many style_designs
and arrangements. Especially it is used in garden style . The popular color is
bright yellow with dark brown centers . However nowadays there are species with
tan ,orange , maroon , or striped petals and green_yellow centers . Some flowers
can be found without the central disc ,being fully covered in petals in place
of.
<P></FONT></P></BODY></HTML>

You might also like