- published: 25 Sep 2019
- views: 6509716
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
The Taj Mahal (/ˌtɑːdʒ məˈhɑːl/, more often /ˈtɑːʒ/; Persian for "Crown of Palaces", pronounced [ˈt̪aːdʒ mɛˈɦɛl]) is an ivory-white marble mausoleum on the south bank of the Yamuna river in the Indian city of Agra. It was commissioned in 1632 by the Mughal emperor, Shah Jahan (reigned 1628–1658), to house the tomb of his favorite wife, Mumtaz Mahal. The tomb is the centrepiece of a 42-acre complex, which includes a mosque and a guest house, and is set in formal gardens bounded on three sides by a crenellated wall.
Construction of the mausoleum was essentially completed in 1643 but work continued on other phases of the project for another 10 years. The Taj Mahal complex is believed to have been completed in its entirety in 1653 at a cost estimated at the time to be around 32 million rupees, which in 2015 would be approximately 52.8 billion rupees (US$827 million). The construction project employed some 20,000 artisans under the guidance of a board of architects led by the court architect to the emperor, Ustad Ahmad Lahauri.
Taj Mahal: An Eternal Love Story is a 2005 Bollywood historical drama film directed by Akbar Khan. The movie starred Kabir Bedi, Sonya Jehan, Manisha Koirala, Arbaaz Khan, Vaquar Sheikh and Pooja Batra in the title roles. The movie was released on 18 November in India. Music was composed by the legend of Indian film music Naushad Ali. This was the last work of Naushad Ali who died on 5 May 2006.
The film was released in Pakistan by Eveready Pictures and did record business at the box office.
The story begins with Shah Jahan, known as Prince Khurram (Zulfikar Sayed) when he is about 19 years old. Khurram was Emperor Jahangir's (Arbaaz Ali) favourite son, whom Jahangir wanted to be the future Emperor of India, along with his wife Noor Jahan (Pooja Batra), who was well aware of this fact. Noor Jahan was married once previously, but when her first husband died, Jahangir married her. Ladli Begum (Kim Sharma) is Noor Jahan's daughter from her first marriage. Noor Jahan is a shrewd lady, who wants the best for herself and her daughter and she aspires for Ladli Begum to marry Prince Khurram so she that she will become the Empress of the Mughal Dynasty.
Coordinates: 23°44′46″N 90°34′03″E / 23.74611°N 90.56750°E / 23.74611; 90.56750
Taj Mahal Bangladesh (Bengali: তাজ মহল বাংলাদেশ) is a scaled copy of the original Taj Mahal (a Mughal mausoleum located in Agra, India) located 10 miles east of the Bangladeshi capital, Dhaka in Sonargaon. Unlike the original, work on the building took only five years. Ahsanullah Moni, a wealthy Bangladeshi film-maker, announced his 'Copycat version of Taj Mahal' project in December 2008. The project cost about USD$ 56 Million, and was built 20 miles northeast of Capital Dhaka. This caused complaints from Indian officials, "You can't just go and copy historical monuments" an official of Indian High Commission in Dhaka told press. He has told how he built a replica of the Taj Mahal so that the poor of his nation can realise their dream of seeing neighbouring India's famed monument.
Love Story is an Indian television drama, produced by Hindi film director Anurag Basu and directed by Ravi Davala. The series originally aired in India on SAB TV from April 30, 2007, to January 17, 2008. Beginning June 11, 2007, the series was retelecast on sister network Sony Entertainment Television. Although the show was dropped from SET's line-up in India within months, the series aired until its completion on SET's international feed, Sony Entertainment Television Asia, which aired the concluding episode of the series on January 31, 2008.
The show is based on the love story of Akash and Shruti. Their egos clash and battles are fought. What begins as an innocent boy meets girl romance soon turns into a drawn-out fight for power and love. Personalities clash, egos are tested and relationships strained, all owing to this love affair. Welcome to the world of thought-provoking love and war, welcome to the lives of Akash and Shruti. It's a star-crossed violent love story in the Romeo-Juliet mode, set in contemporary Delhi. Akash is the typical brooding hero, perhaps carrying the burden of the upheaval in the lives of his parents ACP Rohit Sehgal and Ritu who are separated. From being a talented student once, he has slipped to being a backbencher and a goon. Yet his rugged charm attracts the girls, especially his cute junior in college, Shruti. They fall in love and all hell breaks loose on Akash. Shruti's uncle, a local don and politician who had once been sent to jail by Rohit and her brother Kunaal, head of a rival gang in college are always at loggerheads with Akash. The lovers elope, but Akash is hunted down and shot. As he lies fighting for his life in the hospital, the story takes off, oscillating between the present and the past, told through flashbacks.
Love Story is a 2013 Chinese romantic comedy film directed by Guan Er and written by Liang Xiaoxiao and Zhu Bo, and stars Zhao Yihuan, Wang Yi, and Mo Xi'er. The film was released in China on 2 August 2013.
Love Story is a 1981 Indian romantic movie, produced by Rajendra Kumar and directed by Rahul Rawail. The film stars Rajendra Kumar alongside his son Kumar Gaurav and Vijeta Pandit, both making their film debut.
Vidya Sinha, Amjad Khan, Danny Denzongpa and Aruna Irani also appear in supporting roles.
Rajendra Kumar made Love Story to launch his son Kumar Gaurav in Bollywood. The Film became "blockbuster", making Kumar Gaurav a 'Star' overnight.
Vijay Mehra (Rajendra Kumar) is a wealthy builder, and loves Suman (Vidya Sinha), who also loves Vijay. Ram Dogra(Danny Denzongpa) is a civil engineer who loves Suman. Ram and Suman were friends at college time.
But Vijay leaves Suman because he feels jealousy of Ram & Suman’s friendship and marries another girl, and Suman gets married to Ram, but Vijay's wife dies after giving birth to baby boy, Bunty, while Suman and Ram welcome a baby girl, Pinky.
Years later, Bunty (Kumar Gaurav) and Pinky (Vijeta Pandit) meet as strangers, Vijay wants Bunty to become builder to him, but Bunty wants to become pilot, due to this reason Bunty leaves the home, Pinky also leaves the home because his father wants her to get married.
Join me on a full tour of the Taj Mahal, the world’s most magnificent testimony to undying love. If you like this clip, be sure to follow me on Youtube (400,000+ followers so far). Each Saturday, I upload one new clip about my travels around the world. FOLLOW ME: Website/blog: http://theluxurytravelexpert.com Instagram: https://instagram.com/luxurytravelexpert Twitter: https://twitter.com/LuxTravelExpert Facebook: https://www.facebook.com/LuxuryTravelExpert Tumblr: http://luxurytravelexpert.tumblr.com
https://patreon.com/freeschool - Help support more content like this! The Taj Mahal is the most famous landmark in India and one of the most romantic landmarks in the world. It was built by the Indian Emperor Shah Jahan as a memorial for his beloved wife Mumtaz Mahal following her death. Like this video if you want to see more videos about LANDMARKS! Subscribe to FreeSchool: https://www.youtube.com/user/watchfreeschool?sub_confirmation=1 Visit us on Facebook: https://www.facebook.com/watchFreeSchool Check our our companion channel, FreeSchool Mom! https://www.youtube.com/channel/UCTcEtHRQhqiCZIIb77LyDmA And our NEW channel for little ones, FreeSchool Early Birds! https://www.youtube.com/channel/UC3OV62x86XHwaqsxLsuy8dA "Jaunty Gumption", "Vadodora Chill Mix", "Vadodara" by Kevin Mac...
Taj Mahal interior & Beautiful inside and outside Views - Gingerline Media The famous Taj Mahal in Agra, India is one of the wonders of the world. Have you ever seen an inside tour? We also show you rare footage of Inside the Taj Mahal. The Taj Mahal is an ivory-white marble mausoleum on the south bank of the Yamuna river in the Indian city of Agra. It was commissioned in 1632 by the Mughal emperor, Shah Jahan (reigned 1628–1658), to house the tomb of his favorite wife, Mumtaz Mahal. Construction of the mausoleum was essentially completed in 1643 but work continued on other phases of the project for another 10 years. The Taj Mahal was designated as a UNESCO World Heritage Site in 1983 for being "the jewel of Muslim art in India and one of the universally admired masterpieces of the wo...
This groundbreaking documentary explores the Taj Mahal, an architectural wonder in Agra, India. Our documentary answers the question: what is the Taj Mahal, and where is the Taj Mahal located? Through stunning visuals and expert insights, this documentary uncovers when the Taj Mahal was built and why it was built - a love story etched in marble. The documentary investigates who designed the Taj Mahal and who built the Taj Mahal, a project commissioned by Mughal emperor Shah Jahan. We delve into what Taj Mahal means, revealing how its name encapsulates the essence of this monumental mausoleum. Using cutting-edge technology, our documentary team employs satellite imagery and microscopic investigations to unveil the innovative construction techniques that enabled this masterpiece's completi...
The Taj Mahal is the most famous example of Mughal architecture and it is visited by up to 8 million people every year. It is considered by many to be a new wonder of the world and for good reason; everything from the white ivory marble to the intricate calligraphy tells the visitor that it is nothing short of a piece of art. FREE NEWSLETTER: https://mailchi.mp/a69f93be6c66/hikma... - Become a Patron for as little as a dollar a month to vote on upcoming and keep the movement going! https://www.patreon.com/user?u=12397811 Massive thank you to our Patreons: Mohammad Areeb Awais Omar Farid Ibrahim Ari Joshua Sean Haseeb Nahid Amir Mahmoud Joel CoreBard Visit our website: https://hikmahistory.com/ - Join our social media community: Twitter: https://twitter.com/HikmaHistory In...
Taj Mahal at Agra, India is one of the wonders of the world. The Taj Mahal (4K) was commissioned by Shah Jahan in 1631, to be built in the memory of his wife Mumtaz Mahal, a Persian princess who died giving birth to their 14th child, Gauhara Begum. The Taj Mahal incorporates and expands on design traditions of Persian and earlier Mughal architecture. Note: Video recording is prohibited inside the Taj Mahal. So apologies for not posting Taj Mahal interior videos. My Instagram - http://instagram.com/askfranklin/ Music -William French - Blue Heron (https://soundcloud.com/williamfrenchmusic/william-french-blue-heron-1)
The Taj Mahal is one of the new seven wonders of the world and it is not difficult to see why. It was completed in the 17th century after 22 years of construction. Tag along as we discover the history and how the Taj Mahal came to be and also learn fascinating facts related to this marvel of engineering and pinnacle of beauty.
Support me on Patreon (Exclusive travel Content and How to Travel Series): https://www.patreon.com/sealontour My Instagram: https://www.instagram.com/yaboyseal/ Location of Nikky's Shop: https://maps.app.goo.gl/Zdvoyw7TCxFg6RWp6 More Travel Content: https://www.youtube.com/@sealontour/videos Subscribe for more videos from India and all over the world! Thank you for the constant support!
Join us on an incredible journey as we explore the 7 Wonders of the World! From the tajmahal to the breathtaking Machu Picchu each wonder tells a unique story that has captivated travellers for centuries. In this video we'll take you through these iconic sites revealing fascinating facts and stunning visuals that will leave you in awe7 wonders of world The Tajmahal #bachon ki duniya #fact #facts #fun unesco world heritage sites taj mahal cultural landmarks #historical facts world heritage #7 wonders travel facts 7 wonders of the world 7 wonders of world Tajmahal #bachon ki duniya #fact #facts https://youtube.com/shorts/Ib32FzO2F-4?feature=share https://youtube.com/@bachonkiduniyaone?si=IF3PaHKp3jfpp3rr https://youtu.be/Sr5NauyZMEM Akbar & Birbal: The Masters of Wit & Wisdom https://y...
Taj Mahal Theme Music - Taj Mahal (1999) HD தாஜ் மஹல் தீம் ம்யூஸிக் - தாஜ் மஹல் (1999) HD Download All Remastered Taj Mahal Video Songs https://mp4tamil.com/videos/index.php?dir=Tamil_Yearly_Video_Songs/1999_Tamil_Movies_Video_Songs/Taj_Mahal_Video_Songs DISCLAIMER : We Don't Monetize By These Videos, for Your Entertainment.. We Just Remastered... We Don't Own All Video's / Audio's Copyright, It Belongs to the Respective Rightful Owners If you wish to Delete any Copyright Content, Please Inform us.. Thank you.. DISCLAIMER : We Don't Monetize By These Videos, for Your Entertainment.. We Just Remastered... We Don't Own All Video's / Audio's Copyright, It Belongs to the Respective Rightful Owners If you wish to Delete any Copyright Content, Please Inform us.. Thank you..
The Taj Mahal (/ˌtɑːdʒ məˈhɑːl/, more often /ˈtɑːʒ/; Persian for "Crown of Palaces", pronounced [ˈt̪aːdʒ mɛˈɦɛl]) is an ivory-white marble mausoleum on the south bank of the Yamuna river in the Indian city of Agra. It was commissioned in 1632 by the Mughal emperor, Shah Jahan (reigned 1628–1658), to house the tomb of his favorite wife, Mumtaz Mahal. The tomb is the centrepiece of a 42-acre complex, which includes a mosque and a guest house, and is set in formal gardens bounded on three sides by a crenellated wall.
Construction of the mausoleum was essentially completed in 1643 but work continued on other phases of the project for another 10 years. The Taj Mahal complex is believed to have been completed in its entirety in 1653 at a cost estimated at the time to be around 32 million rupees, which in 2015 would be approximately 52.8 billion rupees (US$827 million). The construction project employed some 20,000 artisans under the guidance of a board of architects led by the court architect to the emperor, Ustad Ahmad Lahauri.
Sign your name without apology
Sign on, sign on
Keep your eye on the economy
Sign on, shine on
And everybody knows
That this is nowhere
Everybody knows
That this is nowhere, nowhere
But you've got to be there
Yes, you've got to be right there
Yes, you've got to be there, yeah
Yes, you've got to be there
Man, you've got to be right there
Yes, you've got to be here, yeah
Bide your time milk and three sugars please
Sign on, sign on
You need a line, you need some poetry
Right on, right on
And everybody knows
That this is nowhere
Nobody knows
That this is nowhere, oh yeah
But you've got to be there
Yes, you've got to be right there
Yes, you've got to be there, yeah
But you've got to be there
Yes, you've got to be right there
Yes, you've got to be there, yeah
And everybody knows
That this is nowhere
Everybody knows
That this is nowhere, nowhere
But you've got to be there
Yes, you've got to be right there
Yes, you've got to be there, yeah
And you've got to be there
Yes, you've got to be right there
Yes, you've got to be here, yeah
You've got to be right there
You've got to be right there
You've got to be right there
Right there, yeah