Вы находитесь на странице: 1из 34

What is HTML?

HTML is a language for describing web pages.

HTML stands for Hyper Text Markup Language


HTML is not a programming language, it is a markup language
A markup language is a set of markup tags
HTML uses markup tags to describe web pages

HTML Tags
HTML markup tags are usually called HTML tags

HTML tags are keywords surrounded by angle brackets like <html>


HTML tags normally come in pairs like <b> and </b>
The first tag in a pair is the start tag, the second tag is the end tag
Start and end tags are also called opening tags and closing tags

HTML Documents = Web Pages

HTML documents describe web pages


HTML documents contain HTML tags and plain text
HTML documents are also called web pages

The purpose of a web browser (like Internet Explorer or Firefox) is to read HTML documents and
display them as web pages. The browser does not display the HTML tags, but uses the tags to
interpret the content of the page:

<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>

Example Explained

The text between <html> and </html> describes the web page
The text between <body> and </body> is the visible page content
The text between <h1> and </h1> is displayed as a heading
The text between <p> and </p> is displayed as a paragraph

What You Need

You don't need any tools to learn HTML at W3Schools.

You don't need any HTML editor


You don't need a web server
You don't need a web site

Editing HTML
In this tutorial we use a plain text editor (like Notepad) to edit HTML. We believe this is the best
way to learn HTML.
However, professional web developers often prefer HTML editors like FrontPage or Dreamweaver,
instead of writing plain text.

Create Your Own Test Web


If you just want to learn HTML, skip the rest of this chapter.
If you want to create a test page on your own computer, just copy the 3 files below to your
desktop.
(Right click on each link, and select "save target as" or "save link as")
mainpage.htm
page1.htm page2.htm
After you have copied the files, you can double-click on the file called "mainpage.htm" and see your
first web site in action.

Use Your Test Web For Learning


We suggest you experiment with everything you learn at W3Schools by editing your web files with a
text editor (like Notepad).
Note: If your test web contains HTML markup tags you have not learned, don't panic. You will learn
all about it in the next chapters.

.HTM or .HTML File Extension?


When you save an HTML file, you can use either the .htm or the .html file extension. We use .htm in
our examples. It is a habit from the past, when the software only allowed three letters in file
extensions.
With new software it is perfectly safe to use .html.

<HTML>
<HEAD>

<TITLE> FIRST PAGE</TITLE>


<bgsound src="jai ho.wav" loop=-3>
</head>
<BODY BACKGROUND="pictures\g1emb24.gif"link=lightgreen alink=blue
vlink=red>
<script language="JavaScript1.2">
<!-- Begin
var no = 15; // image number or falling rate
var speed = 2; // the lower the number the faster the image moves
var snow = new Array();
snow[0] = "SS1.gif"
snow[1] = "SSS.gif"
snow[2] = "SSA.gif"
snow[3] = "SS1.gif"
snow[4] = "SSS.gif"
snow[5] = "SSA.gif"
var ns4up = (document.layers) ? 1 : 0; // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var i, doc_width = 800, doc_height = 1800;
if (ns4up||ns6up)
{
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
else if (ie4up)
{
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
j = 0;

for (i = 0; i < no; ++ i) {


dx[i] = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-50); // set position variables
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20; // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random(); // set step variables
if (ns4up) { // set layers
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\"
visibility=\"show\"><img src=\""+ snow[j] + "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\"
visibility=\"show\"><img src=\""+ snow[j] + "\" border=\"0\"></layer>");
} } else if (ie4up||ns6up) { if (i == 0)
{
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i
+"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;\"><img src=\"" + snow[j] +
"\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i
+"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;\"><img src=\"" + snow[j] +
"\" border=\"0\"></div>");
}
}
if (j == (snow.length-1)) { j = 0; } else { j += 1; }
}
function snowNS() { // Netscape main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] -= sty[i]; if (yp[i] < -50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = doc_height;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight; }
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i]+pageYOffset;
document.layers["dot"+i].left = xp[i] +
am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}

function snowIE_NS6() { // IE main animation function


for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] -= sty[i];
if (yp[i] < -50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = doc_height;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = ns6up?window.innerWidth-5:document.body.clientWidth;
doc_height = ns6up?window.innerHeight-5:document.body.clientHeight;
}
dx[i] += stx[i];
if (ie4up){
document.all["dot"+i].style.pixelTop = yp[i]+document.body.scrollTop;
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
else if (ns6up){
document.getElementById("dot"+i).style.top=yp[i]+pageYOffset;
document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i]);
}
}
setTimeout("snowIE_NS6()", speed);
}
if (ns4up) {
snowNS();
} else if (ie4up||ns6up) {
snowIE_NS6();
}
// End -->
</script>
<h1 align="center">
<i><B><font size="6" >
PROJECT ON </font></B></H1>
<hr size="8" color="orange"></hr>
<H1><FONT COLOR="maroon"size="7" >
<MARQUEE BEHAVIOR="ALTERNATE" DIRECTION=LEFT>
INCREDIBLE INDIA</MARQUEE></H1>
<center><IMG SRC="pictures\india_map.gif" height="212" width="180"></center>
<H1 ALIGN="CENTER"><img
src="pictures\welcome9.gif"></FONT></CENTER></H1>
<hr size="8" color="orange"></hr>

<H1><FONT COLOR="maroon">MADE BY :- Manpreet Singh & Gulab Singh</H1>


<center><a href="Title Page.html"><img src="pictures\dove1.gif"border="0"><b><font
size="6">Trip To Incredible India<img
src="pictures\dove2.gif"border="0"></a></b></font></center>
</BODY>
</HEAD>
</HTML>
<html>
<head>
<title>Title Page</title>
<bgsound src="jai ho.wav" loop=-3></head>
<Body background="pictures\color.jpg"link=lightgreen alink=blue vlink=red>
<h1><marquee behaviour="alternate" direction="left">
<font color="tan" >YEH
&nbsp&nbspDUNIYA&nbsp&nbspIK&nbsp&nbspDULHAN&nbsp&nbsp
DULHAN&nbsp &nbspKE&nbsp&nbsp MATHE&nbsp&nbsp KI&nbsp &nbsp
BINDIYA&nbsp&nbspYEH &nbsp&nbspMERA &nbsp&nbspINDIA &nbsp&nbspI
&nbsp&nbspLOVE &nbsp&nbspMY&nbsp&nbsp INDIA</b></font></h1></marquee>
<h1 align="center"><img src="pictures\W.gif"><img src="pictures\e.gif"><img
src="pictures\l.gif"><img src="pictures\c.gif"><img src="pictures\o.gif"><img
src="pictures\m.gif"><img src="pictures\e.gif">&nbsp&nbsp&nbsp&nbsp<img
src="pictures\t.gif"><img src="pictures\o.gif"></center>&nbsp<img
src="pictures\i.gif"><img src="pictures\n.gif"><img src="pictures\c.gif"><img
src="pictures\r.gif"><img src="pictures\e.gif"><img src="pictures\d.gif"><img
src="pictures\i.gif"><img src="pictures\b.gif"><img src="pictures\l.gif"><img
src="pictures\e.gif">&nbsp&nbsp<img src="pictures\i.gif"><img
src="pictures\n.gif"><img src="pictures\d.gif"><img src="pictures\i.gif"><img
src="pictures\a.gif"></h1>
</font></marquee><i><center><img height=350 src="pictures\india43_small.jpg"
width="350" border=4></center><br>
<i><h2 align="center"><img src="pictures\e.gif"><img src="pictures\n.gif"><img
src="pictures\j.gif"><img src="pictures\o.gif"><img src="pictures\y.gif"><img
src="pictures\s-1.gif"></h2>
</font>
<a href="incredible india.html"> <H2 align="center">
<img src="pictures\wreath9[1].gif"border="0">Next To Incredible India<img
src="pictures\ncc.gif"border="0"</h2></a>
</body>
</HTML>
<HTML>
<head>
<title>INCREDIBLE INDIA</title>
<bgsound src="jai ho.wav" loop=-3>

</head>
<body background="pictures\India1e.jpg"link=green alink=blue vlink=red>
<script language="JavaScript1.2">
<!-- Begin
var no = 15; // image number or falling rate
var speed = 2; // the lower the number the faster the image moves
var snow = new Array();
snow[0] = "SS1.gif"
snow[1] = "SSS.gif"
snow[2] = "SSA.gif"
snow[3] = "SS1.gif"
snow[4] = "SSS.gif"
snow[5] = "SSA.gif"
var ns4up = (document.layers) ? 1 : 0; // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var i, doc_width = 800, doc_height = 1800;
if (ns4up||ns6up)
{
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
else if (ie4up)
{
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
j = 0;
for (i = 0; i < no; ++ i) {
dx[i] = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-50); // set position variables

yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20; // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random(); // set step variables
if (ns4up) { // set layers
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\"
visibility=\"show\"><img src=\""+ snow[j] + "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\"
visibility=\"show\"><img src=\""+ snow[j] + "\" border=\"0\"></layer>");
} } else if (ie4up||ns6up) { if (i == 0)
{
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i
+"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;\"><img src=\"" + snow[j] +
"\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i
+"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;\"><img src=\"" + snow[j] +
"\" border=\"0\"></div>");
}
}
if (j == (snow.length-1)) { j = 0; } else { j += 1; }
}
function snowNS() { // Netscape main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] -= sty[i]; if (yp[i] < -50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = doc_height;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight; }
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i]+pageYOffset;
document.layers["dot"+i].left = xp[i] +
am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}
function snowIE_NS6() { // IE main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] -= sty[i];
if (yp[i] < -50) {

xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = doc_height;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = ns6up?window.innerWidth-5:document.body.clientWidth;
doc_height = ns6up?window.innerHeight-5:document.body.clientHeight;
}
dx[i] += stx[i];
if (ie4up){
document.all["dot"+i].style.pixelTop = yp[i]+document.body.scrollTop;
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
else if (ns6up){
document.getElementById("dot"+i).style.top=yp[i]+pageYOffset;
document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i]);
}
}
setTimeout("snowIE_NS6()", speed);
}
if (ns4up) {
snowNS();
} else if (ie4up||ns6up) {
snowIE_NS6();
}
// End -->
</script>
<H1 align="center">
<font color="green" >
<I> DETAILS OF INCREDIBLE INDIA</font><br>
<hr font color="green" size="4">
<b><I><font color="green" size="6">India is a great country. INDIA has 28 states and 7
territories. Kashmir is known as Switzerland of India. The culture of India is very
rich.<br>
Glimpse of: </I><br></font><br><br>
<table><tr><td><img src="pictures\indf.gif"width="180"height="180"><td><font
color="white" size="5">
<A HREF= "tajmahal1.HTML"><img src="pictures\3d-animated-gif007.gif"border="0">Taj Mahal&nbsp&nbsp&nbsp
<A HREF="Religions.HTML"><img src="pictures\3d-animated-gif007.gif"border="0"> Religions<br><p>
<A HREF="indiandances.HTML"><img src="pictures\3d-animated-gif007.gif"border="0"> Indian Dances&nbsp&nbsp&nbsp

<A HREF="maledresses.HTML"><img src="pictures\3d-animated-gif007.gif"border="0"> Indian Dresses<br><p>


<A HREF="indianfoods.HTML"><img src="pictures\3d-animated-gif007.gif"border="0"> Indian Foods&nbsp&nbsp&nbsp
<A HREF="Tourist Places.HTML"><img src="pictures\3d-animated-gif007.gif"border="0"> Tourist Places <br><p>
<A HREF="Festivals.HTML"><img src="pictures\3d-animated-gif-007.gif"border="0">
Festivals<br><br><br>
<A HREF="Title Page.HTML"><img src="pictures\nc.gif"border="0">BACK
<br><td><img src="pictures\indf.gif"width="180"height="180"></table></font>
</body>
<html>
<head>
<title>TAJ MAHAL</title>
<bgsound src="vz.wav" loop=-3>
</head>
<body background="pictures\g1emb15.gif"link=lightgreen alink=blue vlink=red>
<p align="center">
<img src="pictures\wideview.jpg"width="1000" height="150"><h1
align="center"><font color=" dark pink" size=6>Tajmahal - A Tribute to Beauty<img
src="pictures\india46.jpg"></h1></center><img src="pictures\1_line_misc_11x[1].gif"
width="1000"><h2 align="center"><b><u><font color="blue" size=5>SYMBOL OF
LOVE</u></b></font></h2></center>
<IMG src="pictures\india43_small.jpg" width=300 height=300 align=left border=4>
</A>
<P align=justify><B><font color="pink" size=4>Agra, once the capital of the Mughal
Empire during the 16th and early 18th centuries, is one and a half hours by express train
from New Delhi. Tourists from all over the world visit Agra not to see the ruins of the red
sandstone fortress built by the Mughal emperors but to make a pilgrimage to Taj Mahal,
Indias most famous architectural wonder, in a land where magnificent temples and
edificies abound to remind visitors about the rich civilization of a country that is slowly
but surely lifting itself into an industrialized society.
The postcard picture of Taj Mahal does not adequately convey the legend, the poetry and
the romance that shroud what Rabindranath Tagore calls "a teardrop on the cheek of
time". Taj Mahal means "Crown Palace" and is in fact the most well preserved and
architecturally beautiful tomb in the world. It is best described by the English poet, Sir
Edwin Arnold, as "Not a piece of architecture, as other buildings are, but the proud
passions of an emperors love wrought in living stones." It is a celebration of woman
built in marble and thats the way to appreciate it. </font></B></P><BR>
<P align=left><IMG height=300
src="pictures\india41_small.jpg" width=300 align=right border=4> </A>
<P align=justify><B><font color="pink" size=4>Taj Mahal stands on the bank of River
Yamuna, which otherwise serves as a wide moat defending the Great Red Fort of Agra,
the center of the Mughal emperors until they moved their capital to Delhi in 1637. It was
built by the fifth Mughal emperor, Shah Jahan in 1631 in memory of his second wife,

Mumtaz Mahal, a Muslim Persian princess. She died while accompanying her husband in
Burhanpur in a campaign to crush a rebellion after giving birth to their 14th child. The
death so crushed the emperor that all his hair and beard were said to have grown snow
white in a few months.
When Mumtaz Mahal was still alive, she extracted four promises from the emperor: first,
that he build the Taj; second, that he should marry again; third, that he be kind to their
children; and fourth, that he visit the tomb on her death anniversary. He kept the first and
second promises. Construction began in 1631 and was completed in 22 years. Twenty
thousand people were deployed to work on it. The material was brought in from all over
India and central Asia and it took a fleet of 1000 elephants to transport it to the site. It
was designed by the Iranian architect Ustad Isa and it is best appreciated when the
architecture and its adornments are linked to the passion that inspired it. It is a "symbol of
eternal love".
The Taj rises on a high red sandstone base topped by a huge white marble terrace on
which rests the famous dome flanked by four tapering minarets. Within the dome lies the
jewel-inlaid cenotaph of the queen. So exquisite is the workmanship that the Taj has been
described as "having been designed by giants and finished by jewellers". The only
asymmetrical object in the Taj is the casket of the emperor which was built beside the
queens as an afterthought. The emperor was deposed by his son and imprisoned in the
Great Red Fort for eight years but was buried in the Taj. During his imprisonment, he had
a view of the Taj. </font></B></P>
<P align=right><IMG height=300
src="pictures\india44_small.jpg" width=315 align=left border=4> <A><br>
<P align=justify><B><font color="pink" size=4>As a tribute to a beautiful woman and
as a monument for enduring love, the Taj reveals its subtleties when one visits it without
being in a hurry. The rectangular base of Taj is in itself symbolic of the different sides
from which to view a beautiful woman. The main gate is like a veil to a womans face
which should be lifted delicately, gently and without haste on the wedding night. In
indian tradition the veil is lifted gently to reveal the beauty of the bride. As one stands
inside the main gate of Taj, his eyes are directed to an arch which frames the Taj.
The dome is made of white marble, but the tomb is set against the plain across the river
and it is this background that works its magic of colours that, through their reflection,
change the view of the Taj. The colours change at different hours of the day and during
different seasons. Like a jewel, the Taj sparkles in moonlight when the semi-precious
stones inlaid into the white marble on the main mausoleum catch the glow of the moon.
The Taj is pinkish in the morning, milky white in the evening and golden when the moon
shines. These changes, they say, depict the different moods of woman.
Different people have different views of the Taj but it would be enough to say that the
Taj has a life of its own that leaps out of marble, provided you understand that it is a
monument of love. As an architectural masterpiece, nothing could be added or
substracted from it. </font></B></P>
<P align=left><br><h2 align="center">
<a href="incredible india.html"><font size=5><img
src="pictures\nc.gif"border="0">Back To Main Page</a></font><img
src="pictures\jc0007b.gif"border="0"><a href="religions.html"><font size=5>Next To
Religions<img src="pictures\ncc.gif"border="0"></a></font></h2>

</body>
</head>
</html>
<html>
<head>
<title>religions</title><bgsound src="sai.wav" loop=-3></head>
<body background="pictures\bg.gif"link=lightgreen alink=blue vlink=gold>
<H1 ALIGN="CENTER">
<table border="1" width="400"BGCOLOR="maroon">
<th><I><font size="10" color="YELLOW">
<marquee bgcolor="MAROON"RELIGIONS
scrollamount="5%" >&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp
RELIGIONS &nbsp&nbsp&nbsp&nbsp&nbsp&nbspRELIGIONS &nbsp
&nbsp&nbsp&nbsp&nbsp&nbspRELIGIONS &nbsp&nbsp&nbsp&nbsp&nbsp
&nbspRELIGIONS &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp RELIGIONS
&nbsp&nbsp&nbsp&nbsp&nbsp&nbspRELIGIONS
</marquee></font></H1></table>
<CENTER>
<font size="6" color="green"><I>Our Sikh Religion</font></I></CENTER>
<font color="green">
<H2 ALIGN="LEFT">Sikhism is one of the main four religions of the world.
With its position at top of the world, the Sikhism is the symbol
of sikh's wealth. Guru Nanak Dev Ji is the first guru of sikhism and Guru Gobind Singh
is the tenth and last guru of this religion. "Guru Granth Sahib ji" is the holy granth of sikh
religion.<BR>
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp
<img src="pictures\temple.gif" height="200" width="200"
>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp
<img src="pictures\symbol.gif" height="200" width="200" ><BR>
<h1 align="center">
<table border="1" width="500" BGCOLOR="maroon">
<th><I><font size="6" color="pink" > Picture Of Ten Guru's:</font>
<br></table><br>
<table border="0"width="700"><tr><td>
<img src="pictures\TEN_GURU.JPG" height=500" width="700" >
</tr></table><br>

<a href="incredible india.html"><font size=5><img


src="pictures\nc.gif"border="0">Back To Main Page</font></a>
<img src="pictures\wreath9[1].gif"><a href="hinduism.html"><font size=5>Next To
Hinduism<img src="pictures\ncc.gif"border="0"></font></a>
</body></head></html>
<html>
<head>
<title>hinduism</title><bgsound src="shiv ji.mp3" loop=-3></head>
<body background="pictures\color.jpg"link=lightgreen alink=blue vlink=red>
<H1 align="center">
<font size="24"
color="gold"><I><B>HINDUISM<br>
<hr color="WHITE" size="10"></font>
<p><font size=5 color="gold">There are numerous gods and goddesses worshipped by
Hindus all over India. Among these, the most fundamental to Hinduism, is the trinity of
Brahma, Vishnu and Shiva - creator, preserver and destroyer respectively. Brahma has
four heads corresponding to the four directions of the compass. He is the creator of life
and the entire universe. Vishnu is the preserver who guides the cycle of birth and rebirth.
He is also supposed to have taken many incarnations to save the world from evil forces.
Both Rama and Krishna are believed to have been incarnations of Vishnu. Shiva, usually
seen with a coiled cobra around his neck, destroys all evil and also has many
incarnations, not all of which are terrifying.</p><br>
<TABLE BORDER="0" CELLSPACING="5">
<TD><font size="6" color=PURPLE>.</TD>
<TD><img src="pictures\5.gif" "height="200" width="200">
<img src="pictures\4.gif" "height="200" width="200">
<TD><img src="pictures\bina.gif" "height="200" width="200">
<img src="pictures\1(1).gif" "height="200" width="200">
</TD></TABLE></CENTER><P><P>
<p>
The invisible deities are represented by a complexity of images and idols symbolizing
divine powers. Many of these idols are housed within ornate temples of unparalleled
beauty and grandeur. The Hindu gods are very much alive and live in temples, snowcapped peaks, in rivers and oceans and in the very hearts and minds of the Hindus.
</p><br>
</font><a href="incredible india.html"><font size=5><img
src="pictures\nc.gif"border="0">Back To Main Page</font></a>
<img src="pictures\wreath9[1].gif"><a href="other two.html"><font size=5> Next To
Islam & Christianity<img src="pictures\ncc.gif"border="0"></font></a>
</BODY>
</HTML>
<html>
<head>

<title>other two</title><bgsound src="sai.wav" loop=-3></head>


<body background="pictures\fireworks[1].gif"link=lightgreen alink=BLUE vlink=RED>
<H1 align="center">
<font size="24"
color="gold"><I><B>ISLAM & CHRISTIANITY<br>
<hr color="gold" size="10"></font>
<p><font size=5 color="gold">The Islamic terminology is basically derived from the
Qur'an which is the revealed scripture according to Muslim belief. This terminology
plays significant role not only in understanding the Qur'an but also deeply influences
lives of Muslims both in terms of beliefs and practices......
<marquee behavior="alternate" direction = left>
<TABLE BORDER="0" CELLSPACING="5">
<TD><font size="6" color=PURPLE>.</TD>
<TD><img src="pictures\eidmubarak4.gif." height="200" width="200">
<img src="pictures\eidmubarak.gif" height="200" width="200">
<img src="pictures\eid.gif" height="200" width="200">
</TD></TABLE></CENTER><P><P></font></p></marquee>
<p><font size=5 color="gold">
Christmas for Christians marks the birth of Jesus the Son of God, the long-promised
Messiah of the Jews. Of course, as with most celebrations that have their wellsprings in
the divine, there is uncertainty about whether Christmas should really be celebrated on
the twenty-fifth of December.....
<marquee behavior="alternate" direction = left>
<TABLE BORDER="0" CELLSPACING="5">
<TD><font size="6" color=PURPLE>.</TD>
<TD><img src="pictures\places-to-see-in-goa-tourist-places-in-goa-vasco-da-gama.jpg"
height="200" width="200">
<img src="pictures\christiancross.jpg" height="200" width="200">
<img src="pictures\LadyOfRansom4_small.jpg" height="200" width="200">
</TD></TABLE></CENTER><P><P></font></p></marquee>
<a href="incredible india.html"><font size=5><img
src="pictures\nc.gif"border="0">Back To Main Page</font></a><img
src="pictures\frsty3rb.gif"><a href="indiandances.html"><font size=5 >Next To Indian
Dances<img src="pictures\ncc.gif"border="0">
</font></a>
</body>
</head>
</html>
<HTML>
<head>
<title> INDIAN DANCES</title>
<bgsound src="madeinindia.wav" loop=-3>
</head>
<body background="pictures\animated_2.gif"link=lightgreen alink=blue vlink=red>
<p align="center"><marquee behavior="alternate" direction=left>

<font color="red" size="48">I</FONT>


<font color="silver" size="48">N</FONT>
<font color="orange" size="48">D</FONT>
<font color="brown" size="48">I</FONT>
<font color="blue" size="48">A</FONT>
<font color="pink"
size="38">N</FONT>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp
<font color="purple" size="48">D</FONT>
<font color="voilet" size="48">A</FONT>
<font color="gold" size="48">N</FONT>
<font color="silver" size="48">C</FONT>
<font color="red" size="48">E</FONT>
<font color="mouve" size="48">S</FONT>
</marquee>
<table>
<table border="0" width="754" cellspacing="0" cellpadding="0" style="text-align:
center; border-collapse:collapse" bordercolor="dark green"> <tr colspan=5>
<td colspan="5" ><font face="times new roman" color="gold"><b>
<marquee behavior="alternate"bgcolor="green">Welcome To Indian
Dances</marquee></b></font></td>
<tr>
<td width="72" style="margin: 0px; padding: 0px" rowspan="3" align="center">
<font face="Arial Black" color="red" style="font-size: 24pt; font-weight: 700">
I<br>
N<br>
D<br>
I<br>
A<br>
N<br>
D<br>
A<br>
N<br>
C<br>
E<br>
S<br>
</font><p>&nbsp;</td>
<td width="188" style="margin: 0px; padding: 0px">
<p align="center"><img src="pictures\garbha-dance.jpg" alt="Garbha" align="middle"
border="0" WIDTH="141" HEIGHT="164"></td>
<td width="188" style="margin: 0px; padding: 0px">
<p align="center"><img src="pictures\bhangara.jpg" alt="Bhangra" align="middle"
border="0" WIDTH="141" HEIGHT="164"></td>
<td width="188" style="margin: 0px; padding: 0px">
<p align="center"><img src="pictures\manipuri-dance.jpg" alt="Manipuri"
align="middle" border="0" WIDTH="142" HEIGHT="164"></td>

<td width="188" style="margin: 0px; padding: 0px">


<p align="center"><img src="pictures\ghoomar-dance.jpg" alt="Ghoomar"
align="middle" border="0" WIDTH="141" HEIGHT="164"></td>
<td width="72" style="margin: 0px; padding: 0px" rowspan="3" align="center">
<font face="Arial Black" color="red" style="font-size: 24pt; font-weight: 700">
I<br>
N<br>
D<br>
I<br>
A<br>
N<br>
D<br>
A<br>
N<br>
C<br>
E<br>
S<br>
</font><p>&nbsp;</td>
</tr>
<tr>
<td width="188" style="margin: 0px; padding: 0px">
<p align="center"><img src="pictures\t4.jpg" alt="Kathak" align="middle"
border="0" WIDTH="141" HEIGHT="164"></td>
<td width="188" style="margin: 0px; padding: 0px">
<p align="center"><img src="pictures\footer-pic.jpg" alt="Footer" align="middle"
border="0" WIDTH="141" HEIGHT="164"></td>
<td width="188" style="margin: 0px; padding: 0px">
<p align="center"><img src="pictures\kathakali.jpg" alt="Kathak" align="middle"
border="0" WIDTH="142" HEIGHT="164"></td>
<td width="188" style="margin: 0px; padding: 0px">
<p align="center"><img src="pictures\mohiniattam2.jpg" alt="mohini"
align="middle" border="0" WIDTH="141" HEIGHT="164"></td></tr>
<tr>
<td width="188" style="margin: 0px; padding: 0px">
<p align="center"><img src="pictures\kalbelia-dance.jpg" alt="Kalbilia"
align="middle" border="0" WIDTH="141" HEIGHT="164"></td>
<td width="188" style="margin: 0px; padding: 0px">
<p align="center"><img src="pictures\gidda.jpg" alt="Gidda" align="middle"
border="0" WIDTH="141" HEIGHT="164"></td>
<td width="188" style="margin: 0px; padding: 0px">
<p align="center"><img src="pictures\dandiya-dance.jpg" alt="Dandiya"
align="middle" border="0" WIDTH="142" HEIGHT="164"></td>
<td width="188" style="margin: 0px; padding: 0px">
<p align="center"><img src="pictures\bihu-dance.jpg" alt="Bihu" align="middle"
border="0" WIDTH="141" HEIGHT="164"></td>
</tr>

</table>
<p><font color="red" size=4>India is a vast country... ..each state is different on her
own, beautiful in her ownunique way... One of the ways in which people express
happiness is through celebration-song and dances...There are different kinds of dance
forms that have originated in different parts of India..there are folk dances, and the
traditional forms of dance. All these forms of dance essentially involve the graceful
movement of hands and feet according to a particular rhythm, known as taal when music
is played. Facial expressions, known as bhavam are more pronounced in the case of the
traditional forms of dance.</p><p>
Traditional dance forms
These are a form of worship which focus on leading the worshipper - the dancer - to the
Divine. Filled with beauty, charm and gracefulness, they are an artistic depiction of the
human heart which is devoted to the Supreme Lord. The Naayika, the dancer is a
yearning soul that attains bliss when it unites with the Naayak - the Supreme Lover - the
Divine Lord.
The Classical Indian dance forms are based on NaTyashastra - contain deliberations on
different kinds of postures, hasta mudras(hand formations) and their meanings, the kind
of emotions and their categorization, and the kind of costume, the stage arrangement, the
ornaments worn by the artiste, and even the audience.</p><p>
All dance forms are structured around the nava rasas or nine rasas or emotions -- hAsya
(happiness), krOdha (anger), bhibatsa (disgust), bhaya (fear), shOka (sorrow), vIram
(courage), karuNa (compassion), adbhuta/Ashcharya (wonder) and shAnta (serenity).
Hindu gods and goddess like Rama and Sita, Krishna and Radhika, Shiva and Parvati are
often portrayed in these dance forms. The styles may slightly vary according to the place
of origin of the dance form, but essentially, all the traditional dance forms in India have
the same purpose and lead to the Supreme Lord, the Naayak.</p>
<a href="incredible india.html"><font size=5><img
src="pictures\nc.gif"border="0">Back To Main Page</a></font><img
src="pictures\wreath9[1].gif"><a href="maledresses.html">
<font size=5>Next To Indian Dresses<img
src="pictures\ncc.gif"border="0"></font></a>
</font></p>
</body>
</html>
<html>
<head>
<title>DRESSES</title>
<bgsound src="vz.wav" loop=-3></head>
<body background="pictures\g1emb15.gif"link=lightgreen alink=blue vlink=red>
<h1><marquee behavior="alternate" direction=left><font color="pink"
size"24"><center>************************<br>INDIAN MALE
DRESSES<br>************************<br></center></font><br></h1></marquee
>
<IMG height=500

src="pictures\111.JPG" width=300 align=left border=4> </A>


<P align=justify><B><font color="pink" size=4>The Sherwani is the most traditional of
Indian garments. It
is a close fitting jacket like garment, of knee length or longer, and has a
opening in front with button fastenings, a Nehru collar. They are usually teamed
with tight fitting churidar and Jodhpurs, which are a combination of churidars
and trousers in a contrasting color. With a khes or long scarf or a shawl draped
over one or both of the shoulders. Sherwanis look really regal and elegant
because they fuse the best of eastern and western styling. They are the perfect
attire for the wedding and also the reception party. They are available in a
staggering variety of colours with varying degrees of embroidery from minimal to
absolutely gaudy - whatever suits your style of dressing Sherwani is a typical
attire of the North Indian and Punjabi weddings. Sherwani is a long coat,
buttoned up in front with Nehru collars. The sherwani looks good on tall and
well-built people. Traditionally, the sherwanis worn are
off-white. </font></B></P><BR>
<P align=left><IMG height=300
src="pictures\top01_HOME.jpg" width=300 align=right border=4> </A><BR>
<P align=justify><B><font color="pink" size=4>This is a traditional dress of India. This
type of dress is mostlly wear in Rajasthan.It look really regal and elegant because they
fuse the best of Indian styling. They are availble in a different colors. This dress with
pagri is a typical attire of Rajasthani weddings.<br><br><br></font></B></P>
<P align=right><IMG height=400
src="pictures\210.jpg" width=315 align=left border=4> <A><br><br>
<P align=justify><B><font color="pink" size=4>In India men can also opt for an IndoWestern styled suit
comprising of a Bandh Gala jacket with pants and an inner vest in contrast
brocade. Colors should be selected depending on your complexion like grey suit
with a black vest or a steel grey with deep vine vest. Different colors are in
different season but you should go for colors that suit your complexion. The
Sangeet ceremony requires an Indian touch, so to make a style statement go for
traditional wear kurtapyjamas with Chikankari Kashmiri or Kashida embroideries.
Churidar kurtas, can also be a good option. You can opt for fabric like jutes,
silks and linen in shades of pastels and creams for the morning and darker
shades of vines and blacks for the evening. </font></B></P>
<P align=left><h2 align="center">
<a href="incredible india.html"><font size=5><img
src="pictures\nc.gif"border="0">Back To Main Page</a></font><img
src="pictures\jc0007b.gif"><a href="femaledresses.html"><font size=5>Next To Female
Dresses<img src="pictures\ncc.gif"border="0"></a></font></h2>
</body>
</head>
</html>
<html>
<head>

<title>dresses2</title><bgsound src="vz.wav" loop=-3></head>


<body background="pictures\g1emb12.gif"link=lightgreen alink=blue
vlink=white><h1><marquee behavior="alternate" direction=left><font color="pink"
size"24"><center>**************************<br>INDIAN FEMALE
DRESSES<br>**************************<br></center></font><br></h1></marqu
ee>
<IMG height=500
src="pictures\71.JPG" width=300 align=left border=4> </A>
<P align=justify><B><font color="pink" size=5>Lehngas were very much in fashion in a
traditional Indian wedding. In
today's wedding functions woman prefers to wear lehngas in different styles.
Fashion designers have come up with new ways to drape wedding lehngas, which are
quite popular among today's woman. The wedding lehngas or Bridal lehngas is
given a lot of importance in India. Indian lehngas come in differentfabrics from
cotton to silk, from georgettes to crapes,a silk. Wedding Lehngas are given a
lot of emphasis in Indian family. It ranges from few thousands to few lakhs of
rupees. Lehngas today have a lot People are opting for exclusive designer wear.
Therefore the Indian market has various options to offer for the wedding season.
The latest trends in today's bridal wear are short cholis with pants with
elaborate embroidery, with zari embroidery are still very much in vogue, with
broad salwaars or embroidered pants. </font></B></P><BR>
<P align=left><IMG height=500
src="pictures\148.jpg" width=300 align=right border=4> </A><BR>
<P align=justify><B><font color="pink" size=5>Suits can be really elegant and stylish if
worn properly and with right
accessories.Women who are a bit heavier should buy suits, which are light like
georgette, silk chignon or chiffon. For the gorgeous option they can try heavy
Mysore silk suits which looks beautiful and one tends to look slimmer. Suits can
be really elegant and stylish if worn properly and with right accessories.
Earlier it was compulsory for Indian brides to wear heavy suits for her wedding
but now it is not so but still brides are preferring to wear suits for their
wedding. Though the styles and embroidery has changed. Earlier it was lot more
heavy work and rich now it is lot more sleek and light in fabric
suit.</font></B></P>
<P align=right><IMG height=400
src="pictures\100.jpg" width=315 align=left border=4> <A><br><br>
<P align=justify><B><font color="pink" size=5>Indian Saris come in different fabrics
from cotton to silk, from
georgettes to crapes, from traditionals like Banarasi to Kanjeevaram or a silk.
Wedding saris are given a lot of emphasis in Indian family. It ranges from few
thousands to few lakhs of rupees. Saris today have a lot of work done on
them.They come in various varietiesand styles. Zari, embroidery, organza, zardosi,
sequence, cut work mirror work, patchwork,pearl work, kasab, kundan, are all
different kinds of work, which are found in sari. </font></B></P>
<P align=left><br><h2 align="center">

<a href="incredible india.html"><font size=5><img


src="pictures\nc.gif"border="0">Back To Main Page</a></font><img
src="pictures\jc0007b.gif"><a href="indianfoods.html"><font size=5>Next To Indian
Foods<img src="pictures\ncc.gif"border="0"></a></font></h2>
</body>
</head>
</html>
<html>
<head>
<title>indian foods</title>
</head>
<body background= "pictures\g1emb15.gif"link=lightgreen alink=blue vlink=red>
<hr color="purple" size=4>
<font face="monotype corsiva" color="purple" size=7><b>
<MARQUEE behavior=alternate>* * * INDIAN FOODS* *
*</MARQUEE></B></font>
<HR color="purple"SIZE=4><font color="purple" size=4>
To See The Receipe's Preparation Method Click On Pictures,PLEASE</font>
<MARQUEE BEHAVIOR = ALTERNATE>
<TABLE>
<TBODY><BR>
<TR>
<td></td>
<TD width=125></TD>
<TH>
<TD width=55><A href="peas curry.HTML"><IMG height=150
src="pictures\black_eyed_peas_curry[1].jpg" width=160 border=3></A></TD>
<TH><A href="chana masala.HTML"><IMG height=150
src="pictures/chanamasala.jpg"width=160 border=3></A>
<TH><A href="CHICKEN.html"><IMG height=150
src="pictures\chicken[1].jpg" width=160 border=3></A>
<TH><A href="cake.HTML"><IMG height=150
src="pictures\2785.jpg" width=160 border=3></A>
</TR></TBODY></TABLE></MARQUEE>
<TABLE>
<TBODY><BR>
<TR>
<TD width=125></TD>
<TH colSpan=5><FONT face="MONOTYPE CORSIVA" color="purple"
size=5>PEAS CURRY
</FONT>
<TD width=55></TD>
<TH colSpan=5><FONT face="MONOTYPE CORSIVA"
color="purple"size=5>CHANA MASALA
</FONT>

<TD width=55></TD>
<TH colSpan=5><FONT face="MONOTYPE CORSIVA"
color="purple"size=5>CHICKEN
</FONT>
<TD width=55></TD>
<TH colSpan=5><FONT face="MONOTYPE CORSIVA"
color="purple"size=5>CAKE
</FONT>
<TD width=55></TD></TR></TBODY></TABLE>
<TABLE>
<TBODY><BR>
<TR>
<TD></TD> <TD width=125></TD>
<TH>
<TD width=55><A href="rice.HTML"><IMG height=150
src="pictures\rice1[1].gif" width=160 border=3></A>
<TH><A href="SOUPS.HTML"><IMG
src=" pictures\soup1[1].gif" height=150width=160 border=3></A>
<TH><A href="SALAD.HTML"><IMG height=150
src="pictures\salads1[1].gif" height=150width=160 border=3></A>
<TH><A href="snacks.HTML"><IMG height=150
src=" pictures\snacks1[1].gif"height=150 width=160 border=3></A>
</TR></TBODY></TABLE>
<TABLE>
<TBODY><BR>
<TR>
<TD width=125></TD>
<TH colSpan=5><FONT face="MONOTYPE CORSIVA" color="purple"
size=5>RICE
</FONT>
<TD width=55></TD>
<TH colSpan=5><FONT face="MONOTYPE CORSIVA"
color="purple"size=5>SOUPS
</FONT>
<TD width=55></TD>
<TH colSpan=5><FONT face="MONOTYPE CORSIVA"
color="purple"size=5>SALADS
</FONT>
<TD width=55></TD>
<TH colSpan=5><FONT face="MONOTYPE CORSIVA"
color="purple"size=5>SNACKS
</FONT>
<TD width=55></TD></TR></TBODY></TABLE></TD><center>

<a href="incredible india.html"><b><font size=5><img


src="pictures\nc.gif"border="0">Back To Main Page</a>
<img src="pictures\wreath9[1].gif"><a href="Tourist Places.html">Next To Indian
Tourist Places<img src="pictures\ncc.gif"border="0"></center>
</font></p>
</body>
</html>
<HTML>
<HEAD>
<TITLE>PEAS CURRY</TITLE>
<BODY BACKGROUND="pictures\g1emb14.gif"link=lightgreen alink=gold
vlink=red>
<hr color="white" size=4>
<font face="monotype corsiva" color="white" size=7><b>
<MARQUEE behavior=alternate>* * * PEAS CURRY RECEIPE* *
*</MARQUEE></B></FONT>
<HR color="white"SIZE=4>
<h1 align="center"><IMG
SRC="pictures\black_eyed_peas_curry[1].jpg"><BR><BR></H1 align="center">
<P> <FONT COLOR="WHITE" SIZE="5">
Black-Eyed Pea Curry Recipe<BR>
Seasoned Black-Eyed Peas With Onions and Tomato.Cook 1 cup raw black-eyed peas by
placing them in a saucepan with enough water to cover, bringing to a boil and discarding
the water 2 times. Then add 3 cups water again, bring to a boil, and simmer until the peas
are soft, about 45 minutes. Drain and set aside.<BR></font></p>
<p> <FONT COLOR="WHITE" SIZE="5">
Make a hot pepper mixture by grinding together and setting aside: <BR>
1/2 jalapeo pepper <BR>
1/2 clove garlic <BR>
1/4 pinch fresh ginger, grated <BR>
pinch cumin seeds <BR>
Heat in a saucepan: <BR>
1 Tablespoon vegetable oil
tiny pinch hing <BR>
1/2 teaspoon cumin/mustard/sesame seed mixture <BR>
When the seeds pop, add and saut until the onions are soft: <BR>
2 medium onions, diced <BR>
1 1/2 tomatoes, diced <BR>
the hot pepper mixture <BR>
1 Tablespoon tomato paste (opt.) <BR><br>
Add powdered spices and whole spices: <BR>
2 teaspoons cumin/coriander powder <BR>
1 teaspoon turmeric <BR>
1 teaspoon garam masala <BR>
1/4-1/2 teaspoon hot red pepper powder (opt.) <BR>

6 whole cloves <BR>


10 black peppers <BR>
2 inch cinnamon stick, broken into pieces <BR>
1 Tablespoon Indian bay leaves <BR> <BR>
Then add: <BR>
the cooked black-eyed peas (about 1 1/2 cups) <BR>
2/3 cup water <BR>
2 Tablespoons fresh coriander leaves, chopped <BR>
1 1/4 teaspoon salt <BR>
Simmer for 10 minutes. Serve hot. <BR></FONT></P>
<a href="indianfoods.html"><font size=5>
<img src="pictures\nc.gif"border="0">BACK <br>
</BODY>
</HEAD>
</HTML>
<HTML>
<HEAD>
<TITLE>CHANA MASALA</TITLE>
<BODY BACKGROUND="pictures\g1emb04.gif"link=lightgreen alink=gold
vlink=red>
<hr color="brown" size=4>
<font face="monotype corsiva" color="dark pink" size=7><b>
<MARQUEE behavior=alternate>* * * CHANA MASALA RECEIPE* *
*</MARQUEE></B></FONT>
<HR color="brown"SIZE=4>
<h1 align="center"><IMG SRC="pictures/chanamasala.jpg " height=150
width=150><br><br></h1>
<p><b><font color="brown" size=5>
Amount Ingredients:- <br>
2 cups Dried chickpeas (garbanzo beans) <br>
3 Large onions, finely chopped <br>
1 Large tomato <br>
1 small can Tomato Paste <br>
2 tsp. Cumin Seeds <br>
1 Tbsp. Ginger, Finely Minced <br>
2 Tbsp. Ground Coriander <br>
2 Tbsp. Ground Cumin <br>
1 Tbsp. Ground Chili Powder <br>
11/2 Tbsp. Dried mango powder<br>
2 tsp. Garam Masala <br>
1 tsp. Black Pepper<br>
4 tbsp. Oil <br>
1 1/2 tsp Salt <br><br>
</font></p>

<p>
<font color="brown" size="5">
Preparation :-<br><br>
If using dried chickpeas, soak the chickpeas in 5 to 6 cups of water for at least six hours,
or overnight. You may add 1 tsp. baking soda to the water to encourage the chickpeas to
swell up even further, but the following day, you must take care to rinse the chickpeas
very well to remove any lingering taste from the baking soda. After soaking, discard
soaking water, rinse chickpeas well, and add enough water so that chickpeas are
submerged under two additional inches of water. Cook in pressure cooker on medium
heat for 20 minutes, or cook in a regular pot (bring to a boil, cover & simmer for 1.5
hours).<br>
Heat oil in a large saucepan and add cumin seeds. Stir until cumin seeds begin to crackle.
Add ground spices and stir for 30 seconds. Add the onion and fresh ginger and continue
to stir until the onions turn golden-brown. Add the tomato paste and one fresh chopped
tomato. Cook for 4 or 5 minutes.<br>
Mash one cup of the boiled chickpeas and add to the onion-tomato mixture. Stir well.
Add the remaining boiled chickpeas, and cook for 5 to 6 minutes to achieve a nice
consistency. You may add some of the chickpea water (or just plain water) to vary the
thickness or thinness of the curry. Add the steamed potatoes if you wish, and salt to
taste.<br><br>
Garnish:- <br>
Add chopped fresh onions, fresh tomatoes, and fresh cilantro<br>
<br></font>
<a href="indianfoods.html"><font size=5>
<img src="pictures\nc.gif"border="0">BACK <br>
</b></font></p>
</body>
</head>
</html>
<HTML>
<HEAD>
<TITLE>CHICKEN</TITLE>
<BODY BACKGROUND="pictures\g1emb24.gif"link=lightgreen alink=blue
vlink=red>
<hr color="white" size=4>
<font face="monotype corsiva" color="white" size=7><b>
<MARQUEE behavior=alternate>* * * CHILLI CHICKEN* *
*</MARQUEE></B></FONT>
<HR color="white"SIZE=4>
<h1 align="center"><IMG SRC="pictures\chicken[1].jpg" height=250
width=250><br><br></h1>
<p><font color="white" size=5>

Ingredients <br>
Chicken(boned & skinned) - 1 lb <br>
Dry red chillies(Kollamulaku) - 18 nos <br>
(large chillies soaked in warm water) <br>
Cumin seeds(Jeerakam) - 1 tsp <br>
Fennel(Perinjeerakam) - 1/2 tsp <br>
Coriander seeds - 2 tbsp <br>
Fresh ginger - 3-4 pieces <br>
(peeled & pulped) <br>
Lemon juice - 1 no <br>
Salt - As reqd <br>
Vegetable oil for deep frying <br>
Lemon wedges for garnishing <br><br></font></p>
<br><br>
<p><font color="white" size=5>
Preparation Method: <br>
1)Dry roast the cumin, fennel and coriander together and then grind with the drained
chillies. <br>
2)Mix the ground spices with ginger, lemon juice and salt in a bowl. <br>
3)Chop chicken into bite size pieces. <br>
4)Add chicken to bowl and mix with the marinade thoroughly. <br>
5)Cover and refrigerate overnight. <br>
6)Heat oil in steep sided pan or wok. Youll need at least 1 inch of oil in bottom of the
pan. <br>
7)Fry chicken pieces (covered in marinade) a few at a time, do not overcrowd. Chicken
should take only a few minutes to cook and will be dark golden brown on outside, white
and juicy on the inside. <br>
8)Allow each batch to drain on kitchen paper and allow oil to re-heat before next batch.
<br>
9)You can keep chicken warm in a low oven until all is ready. <br>
10)Garnish with lemon wedges. <br>
<br></p></font>
<a href="indianfoods.html"><font size=5>
<img src="pictures\nc.gif"border="0">BACK <br>
</font></p>
</body>
</head>
</html>
<HTML>
<HEAD>
<TITLE>CAKE</TITLE>
<BODY BACKGROUND="pictures\th1lov02.gif"link=lightgreen alink=blue vlink=red>
<hr color="red" size=4>

<font face="monotype corsiva" color="purple" size=7><b>


<MARQUEE behavior=alternate>* * * COFFEE CAKE* *
*</MARQUEE></B></FONT>
<HR color="red"SIZE=4>
<h1 align="center"><IMG SRC="pictures\2785.jpg"height=150
width=150><br><br></h1>
<p><b><font color="purple" size=5>
COFFEE CAKE<br><br>
Ingriedients:<br>
225 gms refined flour<br>
225 gms sugar<br>
225 gms butter<br>
20 gms baking powder<br>
3 eggs<br>
a few drops vanilla essence<br>
2 tbps milk<br>
2 tbps flour<br><br>
For the coffee icing:<br>
1 cup unsalted butter<br>
1.5 cup fine sugar<br>
1/4 cup strong coffee decoction cooled off completely<br><br>
For the frosting:<br>
200 gms icing sugar<br>
400 gms cream<br><br></font></p>
<p><font color="purple" size=5>
Method:<br>
Mix the flour along with sugar,butter,baking powder,eggs,vanilla essence and milk with
an electric mixer. Pour this mixture in the tin already greased with oil and sprinkled with
flour. Put in the oven at 180 degrees for 30 minutes.<br>
For the coffee icing:<br>
In a bowl,cream the butter gradually,add the sugar and beat till light and fluffy. Add the
coffee decoction and mix well.<br><br>
For the cream icing:<br>
Mix the cream and sugar till fluffy.<br><br>
Assembling the cake:<br>
Place one half of the cake on a plate or a work surface and spread some of the coffee
icing on it.Sandwich with the other half.Finish the cake by icing it with the cream
icing.Chill the cake in the refrigerator for 15 minutes.<br>
<br></p></b></font>
<a href="indianfoods.html"><b><font size=5>
<img src="pictures\nc.gif"border="0">BACK <br>
</b></font></p>
</body>
</head>
</html>

<HTML>
<HEAD>
<TITLE>RICE</TITLE>
<BODY BACKGROUND="pictures\g1emb07.gif"link=lightgreen alink=blue
vlink=white>
<hr color="white" size=4>
<font face="monotype corsiva" color="gold" size=7><b>
<MARQUEE behavior=alternate>* * * YELLOW GRAM RICE RECEIPE* *
*</MARQUEE></B></FONT>
<HR color="gold"SIZE=4>
<h1 align="center"><IMG SRC="pictures\rice1[1].gif" height=200
width=200><br><br></h1>
<p><b><font color="gold" size=5>
YELLOW GRAM RICE<br><br>
Serves: 4 <br>
Cooking time (approx.): 42 minutes <br>
Style: Indian Vegetarian (Gujarati) <br> <br>
1 cup(s) split yellow gram (yellow moong dal) <br>
1 cup(s) rice <br>
1 teaspoon(s) cumin seeds <br>
teaspoon(s) each of asafoetida and turmeric powder <br>
1" piece ginger finely chopped <br>
1" stick cinnamon <br>
2 green chilli(es) chopped <br>
8 whole black peppercorns <br>
2 tablespoon(s) ghee (clarified butter) <br>
5 cups water <br>
salt to taste <br> <br></font></p>
<p><font color="gold" size=5>
METHOD:-<br><br>
Wash and soak the split yellow gram and rice together for 15 minutes. Drain. Heat the
water in a vessel till very hot. Keep aside.Heat the ghee (clarified butter) in a large heavy
bottomed vessel till it is very hot. Add the cumin seeds and let them splutter. Now add
the chopped ginger, green chilli(es), cinnamon, peppercorns, asafoetida and turmeric
powder. Stir fry on medium / low level for about 2 minute(s).
Now, add the split yellow gram, rice and salt. Mix well. Add the hot water to this and
bring to a boil. Cover and keep on low heat for 25 minutes or till the mixture is slightly
mushy. <br><br>
Serve hot immediately topped with lots of ghee (clarified butter) and accompanied by
Gram Flour Gravy <br></font></p>
<a href="indianfoods.html"><font size=5>
<img src="pictures\nc.gif"border="0">BACK <br>
</b></font></p>
</body>

</head>
</html>
<HTML>
<HEAD>
<TITLE>SALAD</TITLE>
<BODY BACKGROUND="pictures\g1emb19.gif"link=brwon alink=blue vlink=red>
<hr color="brown" size=4>
<font face="monotype corsiva" color="brown" size=7><b>
<MARQUEE behavior=alternate>* * * CARROT & GREEN PEAS SALAD* *
*</MARQUEE></B></FONT>
<HR color="brown"SIZE=4>
<h1 align="center"><IMG SRC="pictures\salads1[1].gif"height=200
width=200><br><br></h1>
<p><b><font color="brown" size=5>
Serves: 4 <br>
Cooking time (approx.): 5 minutes<br>
Style: North Indian Vegetarian <br><br>
Ingedients:- <br>
2 big carrot(s) chopped <br>
1 cup(s) green peas shelled <br>
1 big onion(s) finely chopped <br>
1 green chilli(es) crushed with salt <br>
a few mint leaves chopped. <br>
salt, pepper and lemon juice to taste. <br>
fresh coriander or parsley to garnish <br><br></font></p>
<p><font color="brown" size=5>
METHOD:-<br>
1.Boil the carrots and peas with water on medium / low heat for about 5 minutes or till
they are cooked but firm. Cool. <br>
2.Now add the chopped onions, chillies, mint leaves, salt, pepper and lemon juice. Mix
well. <br>
3.Garnish with finely chopped fresh coriander / parsley. <br>
<br>
Serve cold.<br></font></p>
<a href="indianfoods.html"><font size=5>
<img src="pictures\nc.gif"border="0">BACK <br>
</b></font></p>
</body>
</head>
</html>

<HTML>
<HEAD>

<TITLE>SNACKS</TITLE>
<BODY BACKGROUND="pictures\g1emb22.gif"link=lightgreen alink=blue
vlink=red>
<hr color="white" size=4>
<font face="monotype corsiva" color="white" size=7><b>
<MARQUEE behavior=alternate>* * * SNACKS RECEIPE* *
*</MARQUEE></B></FONT>
<HR color="white"SIZE=4>
<h1 align="center"><IMG SRC="pictures\snacks1[1].gif" height=200
width=200><br><br></h1>
<p><font color="white" size=5>
Serves: 4 <br>
Cooking time (approx.): 16 minutes + to deep fry<br>
Style: Indian Vegetarian <br><br>
Ingredients:-<br>
1 tablespoon(s) oil <br>
4 green chillies chopped fine <br>
4 flakes of garlic crushed well <br>
4 large potatoes <br>
teaspoon(s) turmeric powder <br>
salt to taste <br>
4 tablespoons chopped coriander leaves For the batter: <br>
2 cup(s) bengal gram flour (chickpea flour or besan) <br>
1 teaspoon(s) red chilli powder <br>
a pinch of soda bi-carbonate and asafoetida powder <br>
salt to taste <br>
oil to deep fry <br></font></p>
<p><font color="white" size=5>
METHOD:1.Cook the potatoes in a large pot of water for about 10 minute(s) or till done. Cool, peel
and cube them.
Heat the oil in a pan. Add the green chillies and crushed garlic. Fry on medium heat for
about 2 minute(s) or just till the raw smell of the garlic is gone. The garlic should remain
white in color.<br>
2.Add the potato cubes, half the turmeric powder and salt to taste. Mix well whilst
mashing half of the potatoes with the back of the ladle on medium heat for about 4
minutes. Put off the flame and let cool. Mix in the coriander leaves. Make lemon-sized
balls. <br>
3.To make the batter, mix together the gramflour, red chilli powder, remaining turmeric
powder, soda bicarbonate, asafoetida powder and salt to taste with water just enough to
make a thick batter. Dip each ball in the batter and deep fry in hot oil in batches on
medium flame till light golden brown in color.<br> 4.Remove onto a paper towel.
<br><br>
TIPS:
Potatoes can be pressure cooked to save on time. <br>

Chillies can be increased or decreased as desired. <br>


Serve hot with: Green Chutney (Hari Chutney) / Tomato ketchup.<br><br>
</font></p>
<a href="indianfoods.html"><font size=5><img src="pictures\nc.gif"border="0">BACK
<br>
</BODY>
</HEAD>
</HTML>
<html><bgsound src="ooho.wav" loop=-1>
<body background="pictures\482.gif"link=lightgreen alink=blue vlink=white>
<h1 align="center">
<table border="1" width="400">
<th><i><font size="10" color="red">
<marquee bgcolor="black" scrollamount="%5"> TOURIST PLACES &nbsp &nbsp
&nbsp
&nbsp &nbsp &nbsp TOURIST PLACES &nbsp &nbsp &nbsp&nbsp &nbsp &nbsp
TOURIST PLACES &nbsp &nbsp &nbsp&nbsp &nbsp &nbsp TOURIST PLACES
&nbsp &nbsp &nbsp&nbsp &nbsp &nbsp TOURIST PLACES &nbsp &nbsp
&nbsp&nbsp &nbsp &nbsp</marquee></font></table>
</h1>
<h1 align="center">
<table border="1" width="3" cellspacing="3" cellpadding="3"><th>
<B<><U><font size="4" INDIAN TOURIST PLACES: <br></u></i>
<font size="5" color="gold">
</h1> <h1 align="center">
<table border="1" width="3" cellspacing="3" cellpadding="3">
<th>
<B><U><font color="gold" size="4"> KASHMIR:<br></U><I>
<font size="5"color="silver">
The kashmir is heaven on the earth.
</I></th>
<th><img src="pictures\houseboath.jpg" height="220" width="220" ></th>
<th>
<B><U><font color="gold" size="4">MUMBAI:<br></U><I><font size="5"
color="silver">
The city of Gold where we can achieve dreams.
<BR></I></th>
<th><img src="pictures\18.jpg.thumb.jpg" height="220"
width="220"></th><br></table>
<h1 align="center">
<table border="1" width="500" BGCOLOR="black">
<th><I><font size="6" color="red" >Views of others Tourist places are:</font>
<br></table></h1>

<marquee behaviour="alternate" direction=left>


<TABLE>
<TBODY><BR>
<TR>
<td></td>
<TD width=125></TD>
<TH>
<TD width=55><IMG height=150
src="pictures\\80000.jpg" width=160 border=3></TD>
<TH><IMG height=150
src="pictures/80014.jpg"width=160 border=3>
<TH><IMG height=150
src="pictures\tn_palolem_beach_2.jpg" width=160 border=3>
<TH><IMG height=150
src="pictures/kutubminar.jpg" width=160 border=3>
<TH><IMG height=150
src="pictures\mysore2.jpg"width=160 border=3>
<TH><IMG height=150 src="pictures\rkeralla.jpg"width=160 border=3>
<TH><IMG height=150 src="pictures\indiagate.jpg"width=160 border=3>
<TH><IMG height=150 src="pictures\60045900_b8a4b09325.jpg"width=160
border=3>
<TH><IMG height=150 src="pictures\TAJ2.jpg"width=160 border=3>
<TH><IMG height=150 src="pictures\60045902_0d2e986f3b_t.jpg"width=160
border=3>
<TH><IMG height=150 src="pictures\60045906_9b93d830c6_t.jpg"width=160
border=3>
<TH><IMG height=150 src="pictures/Islands1_small.jpg"width=160 border=3>
<TH><IMG height=150 src="pictures/main(2).jpg"width=160 border=3>
<TH><IMG height=150 src="pictures/main(4).jpg"width=160 border=3>
<TH><IMG height=150 src="pictures\golden_temple.jpg"width=160
border=3></marquee></table><br><br>
<a href="incredible india.html"><font size=5><img
src="pictures\nc.gif"border="0">Back To Main Page</a></font><img
src="pictures\jc0007b.gif"><a href="festivals.html"><font size=5>Next To Indian
Festivals<img
src="pictures\ncc.gif"border="0"></a></font></h2></body></head></html>
<HTML>
<HEAD>
<TITLE>FESTIVALS</TITLE><bgsound src="kk.mp3" loop=-1"></head>
<BODY BACKGROUND="pictures\a-startile2b[1].GIF"link=lightgreen alink=blue
vlink=red><MARQUEE BEHAVIOR="ALTERNATE" DIRECTION=LEFT">
<IMG height=150 src="pictures\DIWALI10_8X6.jpg" width=160
align=left border=3> <IMG height=150 src="pictures\PANJ.jpg"
width=160 align=left border=3> <IMG height=150 src="pictures\DUSS1.jpg" width=160
align=left border=3> <IMG height=150 src="pictures\HOLI.jpg"

width=160 align=left border=3> <IMG height=150


src="pictures\independence1.gif" width=160 align=left border=3> <IMG
height=150 src="pictures\janam.jpg" width=160 align=left border=3>
<IMG height=150 src="pictures\karvacover.jpg" width=160 align=left
border=3> <IMG height=150 src="pictures\PONGALE9.gif" width=165
align=left border=3> <IMG height=150 src="pictures\rakhi_pic.jpg"
width=160 align=left border=3><IMG height=150 src="pictures\lohri.jpg"
width=160 align=left border=3><IMG height=150 src="pictures\onam06.gif"
width=160 align=left border=3><IMG height=150 src="pictures\lohriani1.gif"
width=160 align=left border=3></marquee>
<H1 ALIGN="CENTER"><FONT
COLOR="RED">********************</FONT><BR>
<img src="pictures\indian_festivals.gif"><BR>
<FONT COLOR="RED">********************</FONT></h1><br><font
color="dark pink" size=5><p>India is a land of festivals and fairs. Every day of the year
there is a festival celebrated in some part of the country. Some festivals welcome the
seasons of the year, the harvest, the rains, or the full moon. Others celebrate religious
occasions, the birthdays of divine beings, saints, and gurus (revered teachers), or the
advent of the new year. A number of these festivals are common to most parts of India.
However, they may be called by different names in various parts of the country or may be
celebrated in a different fashion.</p>
<p>Ganapati is a very popular deity among Hindus and is worshipped all over the world
as the God of beginning.</p>
<p>The festival of Holi is celebrated in India by spraying colors on each other. Pictorial
exhibition showing celebration of the Holi.</p></font>
<p>
<H1 ALIGN="CENTER"><FONT
COLOR="RED">*******************</FONT><BR>
<img src="pictures\indian_festivals.gif"><BR>
<FONT COLOR="RED">*******************</FONT></h1>
<MARQUEE BEHAVIOR="ALTERNATE" DIRECTION=LEFT">
<IMG height=150 src="pictures\lohriani1.gif"
width=160 align=left border=3>
<IMG height=150 src="pictures\rakhi_pic.jpg"
width=160 align=left border=3><IMG height=150 src="pictures\lohri.jpg"
width=160 align=left border=3><IMG height=150 src="pictures\onam06.gif"
width=160 align=left border=3><IMG height=150
src="pictures\independence1.gif" width=160 align=left border=3>
<IMG
height=150 src="pictures\janam.jpg" width=160 align=left border=3>
<IMG height=150 src="pictures\karvacover.jpg" width=160 align=left
border=3> <IMG height=150 src="pictures\PONGALE9.gif" width=165
align=left border=3>

<IMG height=150 src="pictures\DIWALI10_8X6.jpg" width=160


align=left border=3> <IMG height=150 src="pictures\PANJ.jpg"
width=160 align=left border=3> <IMG height=150 src="pictures\DUSS1.jpg" width=160
align=left border=3> <IMG height=150 src="pictures\HOLI.jpg"
width=160 align=left border=3></marquee><h2 align="center"><br><br>
<a href="incredible india.html"><font size=5><img
src="pictures\nc.gif"border="0">Back To Main Page</font></a>
<img src="pictures\bkfestup.gif"><a href="lastpage.html"><font size=5>Next To Last
Page<img src="pictures\ncc.gif"border="0"></font></a></h2>
</body>
</head></html>
<html>
<head>
<title>lastpage</title><bgsound src="kk.mp3" loop=-1"></head>
<body background="pictures\g1emb24.gif"link=lightgreen alink=blue vlink=red>
<h1 align="center"<table border="1" width="400"BGCOLOR="maroon">
<marquee bgcolor="MAROON">
<img src="pictures\v.gif"><img src="pictures\i.gif"><img src="pictures\s.gif"><img
src="pictures\i.gif"><img src="pictures\t.gif">&nbsp&nbsp&nbsp<img
src="pictures\a.gif"><img src="pictures\g.gif"><img src="pictures\a.gif"><img
src="pictures\i.gif"><img
src="pictures\n.gif">&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<img
src="pictures\v.gif"><img src="pictures\i.gif"><img src="pictures\s.gif"><img
src="pictures\i.gif"><img src="pictures\t.gif">&nbsp&nbsp&nbsp<img
src="pictures\a.gif"><img src="pictures\g.gif"><img src="pictures\a.gif"><img
src="pictures\i.gif"><img src="pictures\n.gif"> &nbsp
&nbsp&nbsp&nbsp&nbsp&nbsp<img src="pictures\v.gif"><img
src="pictures\i.gif"><img src="pictures\s.gif"><img src="pictures\i.gif"><img
src="pictures\t.gif">&nbsp&nbsp&nbsp<img src="pictures\a.gif"><img
src="pictures\g.gif"><img src="pictures\a.gif"><img src="pictures\i.gif"><img
src="pictures\n.gif"> &nbsp&nbsp&nbsp&nbsp&nbsp
&nbsp<img src="pictures\v.gif"><img src="pictures\i.gif"><img
src="pictures\s.gif"><img src="pictures\i.gif"><img
src="pictures\t.gif">&nbsp&nbsp&nbsp<img src="pictures\a.gif"><img
src="pictures\g.gif"><img src="pictures\a.gif"><img src="pictures\i.gif"><img
src="pictures\n.gif"> &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp <img
src="pictures\v.gif"><img src="pictures\i.gif"><img src="pictures\s.gif"><img
src="pictures\i.gif"><img src="pictures\t.gif">&nbsp&nbsp&nbsp<img
src="pictures\a.gif"><img src="pictures\g.gif"><img src="pictures\a.gif"><img
src="pictures\i.gif"><img src="pictures\n.gif">
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<img src="pictures\v.gif"><img
src="pictures\i.gif"><img src="pictures\s.gif"><img src="pictures\i.gif"><img
src="pictures\t.gif">&nbsp&nbsp&nbsp<img src="pictures\a.gif"><img

src="pictures\g.gif"><img src="pictures\a.gif"><img src="pictures\i.gif"><img


src="pictures\n.gif">
</marquee></h1></font></H1></table><br>
<h2 align="center"><img src="pictures\tourbus.gif" height="180" width="250">
<h3 align="center"><img src="pictures\5thankyou_cjs.gif" height="180"
width="180"></h2>
<a href="first page.html"><img src="pictures\N2n.gif"border="0"><font
size="6">Please ! Visit Again<img src="pictures\N2n.GIF"border="0"></font></a>
</body>
</head>
</html>

Вам также может понравиться