-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taj.html
90 lines (85 loc) · 6.89 KB
/
Taj.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<html>
<head>
<style>
h1{
text-align: center;
font-size: 40px;
}
#img{
margin-left: 50px;
margin-right: 50px;
}
.foot{
border-radius: 10px;
margin-top:20px;
height: 30px;
width: 100;
background-color: aliceblue;
}
.foot:hover{
background-color:rgb(203, 212, 212);
border-color: black;
}
a{
text-decoration: none;
color: black;
}
a:hover{
text-decoration: underline;
color:rgb(22, 21, 21) ;
}
</style>
</head>
<body>
<h1>Welcome to Taj Mahal</h1>
<div id="img">
<img class="mySlides" src="Taj.jpg" style="width:100%" height="400px">
<img class="mySlides" src="Taj1.jpg" style="width:100%" height="400px">
<img class="mySlides" src="Taj2.jpg" style="width:100%" height="400px">
<img class="mySlides" src="Taj3.jpg" style="width:100%" height="400px">
<button class="left" onclick="plusDivs(-1)">❮</button>
<button class="right" onclick="plusDivs(1)">❯</button>
</div>
<div>
<h2>History of Taj Mahal</h2>
<p>
A History of Architecture. p624, 630
The battle of Panipat laid the foundation of the Mughal dynasty in Agra. The loss of the Afghan Ruler, Sikandar Lodhi became the turning point that piloted the nation’s forays into the world of architectural majesty. Globally renowned as the city of the Taj Mahal, this royal Mughal city has many other monuments too that emphasise the high point of Mughal architecture.
The founder of the Mughal dynasty, Babur, laid out the first formal Persian garden on the banks of the river Yamuna. Akbar raised the towering ramparts of the great Red Fort and within its walls Jahangir built rose-red palaces, courts and gardens.
However, the crowning glory of the city is obviously The Taj,a monument of an imagination turned into a "symbol of eternal love".The Taj represents India to the world embellished by Shah Jahan with marble mosques, palaces and pavilions of gem-inlaid white marble.
In 1631 AD, Shah Jahan, the Emperor during the Mughal Empire's period of greatest prosperity, was grief stricken when his third wife, Mumtaz Mahal died during the birth of their fourtheenth child, Gauhar Ara Begum. The court chronicles of ShahJahan's grief illustrate the love story traditionally held as an inspiration for the Taj Mahal.
The Taj Mahal incorporates and expands on design traditions of Persian architecture and earlier Mughal architecture. Specific inspiration came from successful Timurid and Mughal buildings including; the Gur-e Amir (the tomb of Timur, progenitor of the Mughal dynasty, in Samarkand), Humayun's Tomb and Shah Jahan's own Jama Masjid in Delhi.
While earlier Mughal buildings were primarily constructed of red sandstone, Shah Jahan promoted the use of white marble inlaid with semi-preciou stones and buildings under his patronage reached new levels of refinement.
The Itmad-Ud-Daulah's Tomb (sometimes called the Baby Taj ), that Nur Jahan built for her father, Mirza Ghiyas Beg was the first Mughal structure to be built entirely of marble. This particular monument marks the transition from the red sandstone structures to those in white marble and is believed to be the precursor of the magnificent Taj Mahal. However, the architects evolved this masterpiece from the closest model completed some 60 years before, at Humayun’s Tomb in Delhi, by his wife, Hamida Begum.
According to Koch, who spent a decade digging to the very beginnings of the famous monument and measuring every inch of the vast complex,this was exactly what the building-obsessed emperor had wanted to create: a monument that would be unrivalled in beauty and grandeur for all generations to come." It will," in the words of his court historian Muhammad Amin Qazwini, "be a masterpiece for ages to come, increasing the amazement of all humanity".
"As a historian I was a little sceptical about the love angle," confesses Koch. But his biography, Padshahnama, written by a series of carefully chosen historians, goes into extraordinary detail about the emperor's broken heart, including how his beard turned white overnight and how he shared with his begum not just passion but a meeting of minds as well.
Shah Jahan set about constructing his "masterpiece for ages to come", Koc says, with utmost deliberation. Just the selection of the site, for instance, took him nearly six months. The prevailing fashion in the royal capital Agra was for river front havelis to be turned into garden tombs. But the Taj wasn't going to be just one of the scores of garden tombs. "Shah Jahan knew & nothing makes an impression stronger than sheer size, so he decided to build a complex that was almost a kilometre long," Koch says. "It's the biggest mausoleum if not in the world, at least in Asia."
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. According to a court historian Abdul Hamid Lahori, a network of wells was laid down along the river line and was filled with stones and other solid materials in order to lay a strong foundation of this grand mausoleum. The chief architect of Taj was a Persian named Ustad Isha Khan (a well known architect of his time) who was assisted by other architects to make Taj Mahal a profound fusion of Persian, Turkish, Indian and Islamic architecture.
To make it most gorgeous architectural piece, as many as 28 precious and semi-precious stones were used in the ornamentation with their best combination. But the thing, dominantly used in ornamentation was the famous snow white marble that was found in Makrana (Rajasthan).
Other semi-precious stones were brought from distant region of India, Ceylon and Afghanistan; Jasper from Punjab, jade and crystal from China, turquoise from Tibet, lapis lazuli & sapphire from Arabia and diamonds from Panna. Red sand stones of different tints that constitute the base were requisitioned from neighboring quarries of Sikri, Dholpur etc.
</p>
</div>
<footer>
<button class="foot">
<a href="TourismIn.html">Go Back</a>
</button>
</footer>
<script>
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("mySlides");
if (n > x.length) {slideIndex = 1}
if (n < 1) {slideIndex = x.length}
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex-1].style.display = "block";
}
</script>
</body>
</html>