- published: 18 Dec 2019
- views: 32839
'+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 Municipal Corporation of Delhi (MCD) was a municipal corporation, an autonomous body that governs 8 of the 11 Districts of Delhi, in the state of Delhi, India. It was one of three municipal corporations in the National Capital Territory of Delhi, the others being New Delhi Municipal Council, and Delhi Cantonment Board. "The MCD was among the largest municipal bodies in the world providing civic services to more than estimated population of 11 million citizens in the capital city. The municipal corporation covers an area of 1,397.3 km² (539.5 mi²).
"Within its jurisdiction are some of the most densely populated areas in the world. It has also the unique distinction of providing civic services to rural and urban villages, resettlement colonies, regularised unauthorised colonies, Slum/Squatter Settlements, private 'katras' etc."
"MCD came into existence on the 7th of April, 1958 under and Act of Parliament. Prior to that DMC ( Delhi Municipal Committee ) was the principal civic body of Delhi. Eminent Freedom Fighter Guru Radha Kishan has the honour to represent MCD ( initially Delhi Municipal Committee ) for most consecutive years as a Councillor. The first elected Mayor of Delhi was Pt. Trilok Chand Sharma served as First Mayor of Delhi. Since then, the Municipal Body has always been alive in its constitution and functioning to the growing needs of citizens. The 1993 amendment of the Act brought about fundamental changes in composition, functions, governance and administration of the corporation."
A municipal corporation is the legal term for a local governing body, including (but not necessarily limited to) cities, counties, towns, townships, charter townships, villages, and boroughs.
Municipal incorporation occurs when such municipalities become self-governing entities under the laws of the state or province in which they are located. Often, this event is marked by the award or declaration of a municipal charter.
With the notable exceptions of the City of London Corporation and the Laugharne Corporation, the term has fallen out of favour in the United Kingdom, but the concept remains central to local government in the United Kingdom, as well as former British colonies such as India and Canada.
A city charter or town charter (generically, municipal charter) is a legal document establishing a municipality such as a city or town. The concept developed in Europe during the middle ages and is considered to be a municipal version of a constitution.
Delhi (/ˈdɛli/, Hindustani pronunciation: [d̪ɪlliː] Dilli), officially the National Capital Territory of Delhi, is the capital territory of India. Delhi is historically and culturally connected to both the Upper Doab of the Yamuna-Ganges river system and the Punjab region. It is bordered by Haryana on three sides and by Uttar Pradesh to the east. It is the largest city in India in terms of geographical area - about 1,484 square kilometres (573 sq mi). It has a population of about 16.3 million, making it the second most populous city and second most populous urban agglomeration in India and 3rd largest urban area in the world. Such is the nature of urban expansion in Delhi that its growth has expanded beyond the NCT to incorporate towns in neighbouring states and at its largest extent can count a population of about 25 million residents as of 2014.
Delhi has been continuously inhabited since the 6th century BC. Through most of its history, Delhi has served as a capital of various kingdoms and empires. It has been captured, ransacked and rebuilt several times, particularly during the medieval period, and modern Delhi is a cluster of a number of cities spread across the metropolitan region.
Delhi (pronounced DEL-High) is a former township (now an unincorporated community) located off of the junction of Ontario Highways 59 and 3. Delhi is known as the "Heart of Tobacco Country." Prior to 1880, this community was known for its lumber industry.
Founded by Frederick Sovereign as Sovereign's Corners around 1826, the community was renamed Fredericksburg and eventually to its present-day name of Delhi. The name is usually attributed locally to a postmaster honouring a major city of the British Empire, Delhi, India.
Delhi Cemetery was first established sometime in the 19th century. While it was originally a cemetery exclusively for residents who were religiously involved in the Roman Catholic Church, changes in cemetery policy made it possible to have anyone buried or interned on their property. At least 111 people and/or families hold their final resting place here. The last names of the graves belong to different ethnic groups ranging from Anglo-Saxon, French Canadian, Eastern European, and those of Belgian descent. There are even few Chinese families buried within the cemetery and a wide amount of tombstones are written in languages other than English.
Delhi's ethnic groups are diverse. During the British Raj, Delhi was a district city of the Punjab Province of British India and is still historically and culturally connected to the Punjab region. The Yamuna river was the historical boundary between the Punjab and the rest of the Indo-Gangetic Plain, and its flood plains provide fertile alluvial soil suitable for agriculture but are prone to recurrent floods. The Yamuna, a sacred river in Hinduism, is the only major river flowing through Delhi. The original natives of Delhi are those whose ancestors lived in the Yamuna basin, a region which spreads radially from the capital up to a distance of approximately 200 kilometres. Today the migrant population consists largely of Bhojpuris and Biharis.
The Indian censuses record the native languages, but not the descent of the citizens. Linguistic data cannot accurately predict ethnicity: for example, many descendants of the Punjabi Hindu and Sikh refugees who came to Delhi following the partition of India now speak Hindi natively. Thus, there is no concrete official data on the ethnic makeup of Delhi.
Please visit http://instyn.in/help for more support with doubt clearing and personalized tuition classes. Through this video, you can learn about - By the end of this video you will be able to learn: All these and many more questions will be answered in this video. SUBSCRIBE, LIKE & SHARE! Watch the video and let us know if you have any questions. For more such videos of Class 6 - Visit https://bit.ly/3dHOR0s to get access to all class videos, live Tests, live classes, quizzes and many more. Use code: XTTJHNGD for a 100% discount. Hurry up it's for first 500 users only. About us : instyn.com is an E-learning platform where we focus on supporting the educational needs of a student required to excel in today's competitive world. We provide e-learning materials from KG to 12 standard ...
Mira Bhayandar BJP MLA Geeta Jain Slaps a Municipal Corporation Engineer | NBT #MiraBhayandarMLA #GeetaJain #nbtentertainment ----------------------------------------------------------------------------- 👉 Official NBT App: https://navbharattimes.onelink.me/cMxT/applink About Navbharat Times Youtube Channel: नवभारत टाइम्स Newspaper Official Channel, which covers all Up-to-date Coverage on the Latest Top News Stories, Sports, Business, Entertainment, Politics and More. Navbharat Times नवभारत टाइम्स भारत की सबसे लोकप्रिय हिन्दी न्यूज़, जहाँ आप देश-दुनिया, खेल, मनोरंजन और धर्म-संस्कृति से जुड़ीं हर खबरें सबसे पहले पाते हैं। इसके साथ ही सम-सामयिक मुद्दों लेखकों और हमारे पाठकों के बीच संवाद उनके विचार के रूप में सामने आते हैं। 👉 Navbharat Times Website : https://navbharattimes.indiatimes...
In this video we will discuss about the different types of Municipalities in India which include Municipal Corporation, Municipal Council, Nagar Panchayat. We will also discuss about the 74th amendment act of Indian constitution which brought the 12 th schedule to the constitution. I hope you will like this video.
The Municipal Council is an important part of governance, use the link below to find out more. https://www.localgovjamaica.gov.jm/mayors-chief-executive-officers/
The Municipal Corporation of Delhi (MCD) will hold elections on April 23. Here's what you need to know about the different municipal corporations in Delhi, how they work, and the specific roles and responsibilities of the MCD that are distinct from the Delhi government's.
Municipal administration & water supply minister presented his budget yesterday (30.03.23) where he made many announcements on which he mentioned that 44 municipality & town panchayat is moving to next level and 5 municipalities may become corporation soon. In this video we can see the latest update of this project and list of promoting cities / towns, etc Please watch the video and subscribe our channel *** New bus stand coming up: https://youtu.be/wuaEBwfwLEY **** #corporation #makethechanges #tamilnadubudget2023
Join this channel to get access to perks: https://www.youtube.com/channel/UCAZiVpzu6oHHLcBQixHH0yg/join Laxmikanth Book 6th Edition - https://amzn.to/2TfTTtu Insta - https://www.instagram.com/hrsht.dwivedi Telegram Link - https://t.me/harshitdwivedivideos This is the 169th video of Indian Polity by M. Laxmikanth sixth edition. # TYPES OF URBAN GOVERNMENTS # Municipal Corporation # Municipality # Notified Area Committee # Town Area Committee # Cantonment Board Watch the video for more details. #upscpolity #laxmikanthpolitybook #laxmikanthpolityvideos #mlaxmikanthconstitution Indian Polity by M. Laxmikanth Complete Analysis for all Competitive Exams Playlist - https://www.youtube.com/playlist?list=PL_K2YMR-A5WJ3KpnC6PSLN7f_BYw749xf NCERT Social and Political Life II Class VII Te...
👉Previous Video: https://www.youtube.com/watch?v=2dHzx8vmiqc 👉Next Video: https://www.youtube.com/watch?v=ovK-EbgmMpE ✔️📚👉 Watch Full Free Course: https://www.magnetbrains.com ✔️📚👉 Get Any Class & Subject's Topic Video Here:- https://www.magnetbrains.com/get-topic-wise-video ✔️📚👉 Get All Subjects Playlists: https://www.pabbly.com/out/all-videos-playlist ✔️📚👉 Grab Notes by Expert Teachers Here: https://www.pabbly.com/out/magnet-brains ✔️📚👉 Place Your Queries For Books Here: https://www.magnetbrains.com/booklet ✔️📚👉 Get Books Prepared by Our Expert Teachers at Your Door Step: https://www.magnetbrains.com/book_purchase ======================================================= 📢 Full Playlist Link: https://www.youtube.com/playlist?list=PLVLoWQFkZbhWT-_7TqwagJkpO91DbwsxL ✅ In this video, ✔️ Cl...
We made it to India!! Come with us as we explore Old and New Delhi during as we develop our first impressions of India. In this video we really wanted to show the multiple faces of Delhi; a city most commonly known to the Western World as a place of noise, dirt, and poverty. And while that can all be found here, New Delhi and Cyber City showed us that the opposite things can be found here too: quiet, cleanliness, and wealth. There is so much to discover in Delhi! If you are visiting Delhi soon or this is your first time in Delhi as well, then this video will also help you plan your time in this giant city! To really develop our first impressions of India, we wanted to explore as much of Delhi as we could (without overloading this vlog too much!). Over the course of a couple days (thanks r...
FOLLOW OUR PODCAST Apple: http://apple.co/ballenbedtimestories Amazon: https://lnk.to/BedtimeStoriesPod Spotify: https://spotify.link/hJciJkAYiDb Urban legends exist around the world. Mostly, they keep us from parking in dark places at night, or from talking to creepy kids with dark-coloured eyes. But what happens when an urban legend goes viral, causing so much panic that people begin to die because of it? That’s precisely what happened in India in 2001, when residents reported some 350 terrifying encounters with what would eventually become known as the Monkey Man of Delhi. Check out these other channels and videos! @UnexplainedMysteriesOfficial The Mysterious Monkey Man Of New Delhi https://www.youtube.com/watch?v=xP_3jdoqh7s @decodingtheunknown2373 What Was The ‘Monkey Man’ Of Del...
Three armed men opened indiscriminate fire at a club in Delhi late Thursday in a bid to threaten the owner and extort money. The incident took place at the Kaanch Club in North East Delhi's Seemapuri and was caught in the CCTV installed outside the club. There are no reports of any injuries. #DelhiClubFiring #ArmedMenOpenFire #DelhiClubShootout #GunmenTarget #DelhiClub #ArmedMenAttackedClub #NDTVDigitalOriginals About NDTV (English news channel): NDTV is India's Most-Trusted News Broadcaster with the latest updates in news, sports, entertainment and much more from within India and around the world. Watch big political debates, exclusive entertainment interviews, news bulletins, current affairs, talk shows and tech reviews with our 24x7 news live streams, packed with credible informat...
Head to https://squarespace.com/rhettandclaire to save 10% off your first purchase of a website or domain using code "rhettandclaire" 😁 Travelling to INDIA soon? Consider picking up our Resource Pack + Itinerary - https://bit.ly/3GP16KE We’re out exploring the second most populated city IN THE WORLD - Delhi, India😱🇮🇳 Even though we were told numerous times not to visit the city, we still did and were very surprised. ▬▬▬▬▬ D E A L S F O R Y O U 🎥Stock footage we use — https://bit.ly/3IViEm4 ♫Music we use — https://bit.ly/3yeYI9f, https://bit.ly/3J73gUP ✈Travel Insurance — https://bit.ly/3oKuuuR ✈Comprehensive health insurance - https://bit.ly/2BoAPnG ✈Get the best VPN — https://nordvpn.com/rhettandclaire ▬▬▬▬▬ S U P P O R T U S Want to help us stay on the road? We'll be incred...
#Chanakyaa #delhirajagopalan #bjp #modi #latestnews #tamilnews #rangarajpandey #RangarajpandeyLatest #latestupdate #PandeyLatest #ChanakyaaDigitalNews #ChanakyaaChannel சாணக்யா! அரசியல், சமூக பிரச்சனை , அறிவியல் , கலாச்சாரம் , விளையாட்டு , சினிமா மற்றும் பொழுதுபோக்கு அம்சங்களை வழங்கும் ஊடகம். A Tamil media channel focusing on , Politics, Social issues, Science , Culture, Sports, Cinema and Entertainment. Connect with Chanakyaa: SUBSCRIBE US to get the latest news updates: https://www.youtube.com/Chanakyaa Visit Chanakyaa Website -https://chanakyaa.in/ Like Chanakyaa on Facebook - https://www.facebook.com/chanakyaaonline/ Follow Chanakyaa on Twitter - https://twitter.com/ChanakyaaTv Follow Chanakyaa on Instagram - https://www.instagram.com/chanakyaa_tv/?hl=en Android App - http...
I'm 𝐄𝐱𝐩𝐥𝐨𝐫𝐞 𝐢𝐧𝐝𝐢𝐚, I'm a 𝐕𝐢𝐝𝐞𝐨 𝐂𝐫𝐞𝐚𝐭𝐨𝐫 Who Make These Kind Of Content Regarding - "𝐓𝐨𝐮𝐫𝐢𝐬𝐦,𝐈𝐧𝐟𝐨𝐫𝐦𝐚𝐭𝐢𝐯𝐞 𝐕𝐢𝐝𝐞𝐨𝐬,𝐂𝐫𝐢𝐬𝐢𝐬 & 𝐒𝐨 𝐎𝐧"... Check Out My More Videos I Hope You Really Enjoyed Them. ★ 𝗠𝗨𝗦𝗜𝗖 𝗖𝗥𝗘𝗗𝗜𝗧 Delhi - 6 (T-SERIES) https://youtu.be/sPkthMfeWMY Song - Dilli-6 Film - Delhi-6 Singer - Blaaze, Benny, Tanvi, Viviane, Claire Lyricist - Viviane, Claire Music Director - A.R. Rahman Artist - Abhishek Bachchan, Sonam Kapoor, Atul Kulkarni, Divya Dutta, Om Puri, Rishi Kapoor, Waheeda Rehman Music On - T-Series (No Copyright) "Delhi" - Modern Indian Trap Hip Hop Background Music For Videos by SoulProdMusic https://youtu.be/2L0PodP2Emc?list=LL ___________________________________________________ ★ This Video Is Edit In 𝗣𝗿𝗲𝗺𝗶𝘂𝗿𝗲 𝗣𝗿𝗼 𝗰𝗰 ★ It Take Lots Of Efforts To Make These Kind Of Videos F...
#delhi #delhinews #india in this video we will know about the most important city of the India delhi. enjoy the video and don't forget to subscribe the channel. places to visit in delhi India Gate Red Fort Qutab Minar Hauz Khas Bahai (Lotus)Temple e Chandni Chowk Jama Masjid Rashtrapati Bhawan Paranthe Wali Gali Sarojini Nagar Market Jantar Mantar Gurudwara Bangla Sahib Connaught Place Kingdom of Dreams Raj Ghat and many more. _______________________________________________ For business enquiry Email : [email protected] ______________________________________________ Disclaimer-Some contents are used for educational purpose under fair use. Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as critic is...
TOP 10 Attractions and Places to Visit in Delhi, India | Travel Video | Travel guide | SKY Travel #delhi #india #indian #travelvideo #travelguide #travel #travelvlog #traveling #skytravel @Sky.Travel
DELHI, INDIA TRAVEL GUIDE: In this New Delhi travel tour we explore around the old city and New Delhi. We also head over to Agra to visit Taj Mahal. Delhi is the capital of India and one of the largest cities in the world located in Northern India. We will show you the best things to do in Delhi in this tourist Vlog of Delhi India.We show you many of the best tourist attractions in Delhi. Watch Our Travel Guide From Mumbai India: https://youtu.be/RxwFb5dnWzg Best Things To Do in New Delhi India: 00:00 Delhi Intro 0:23 Lotus Temple 1:37 Pracheen Hanuman 2:47 Qutab Minar 3:31 Quwwatul-Islam Masjid 5:22 Agra Taj Mahal 7:50 Delhi Historical Facts 9:05 Yamuna River 11:56 The Chandni Chowk 16:02 Delhi Market Tour 18:27 Gurudwara Bangla Sahib 22:07 Indian Food 23:09 India Gate 24:22 Cobra Danc...
Ever wondered what India is like? India is one of the most culturally diverse countries in the world so it's easy for tourists to embarrass themselves while they're there. Here are 10 things NOT to do while in India. Support me on Patreon if ya dig what I'm doing: https://www.patreon.com/calmckinley You can also check out my website for a FULL list of travel recommendations! https://golocaltips.com Instagram: https://www.instagram.com/calmckinley/ facebook: https://www.facebook.com/golocaltips/ Music: Budgerigar Vishnu by Vinod Prasanna - https://goo.gl/wJ36xi DJ by Jahzzar - https://goo.gl/5fZ6UY Quitin' Time by Patrick Lee - https://goo.gl/APcLcz Additional footage thanks to Sandhya's Kitchen, Anastasia Dinastia, water.org a movie by Cal McKinley
लगेगी #entertainment की Sale! और होंगे न नाचने के बहाने फेल, पेश है नए तड़के के साथ "दिल्ली वाली 2.0" Subscribe to our channel for more Bhojpuri Songs: https://youtube.com/c/SaregamaHumBhojpuri Credits: Title :- Delhi Wali 2.0 Singer :- Neelkamal Singh Lyrics :- Raushan Singh Vishwas Music :- Priyanshu Singh Feat :- Mahima Gupta Director & Choreographer:- Lakkie Vishwakarma DOP:- Yogesh Singh Editor :- Rishu Singh Assistant Choreographer:- Ashu & Suresh DI:- Rohit Singh Production:- Aakash Vishwakarma #neelkamalsingh #delhiwali2.0 #saregamahumbhojpuri #mahimagupta #neelkamalsinghsong #bhojpurisong #bhojpurigaana Learn to sing in Sur with AI Powered Personal Music Teacher- Padhanisa by Saregama. Download Padhanisa App now; https://sarega.ma/padhanisa Follow us on: Facebook...
नमस्ते and Welcome to this aerial drone footage of Delhi, capital of India, in 4K UHD resolution! Delhi, India 4K ULTRA HD 60 FPS Collection of Drone & Aerial Footage Please Subscribe our New YouTube Channel & show us your love & support. Exploropia 8K Link Below: 👇 👇 👇 https://www.youtube.com/@Exploropia8K 📌 Please Keep Supporting us guys✌️!!!! 📌 Make sure to Subscribe ▶️ with Bell 🔔 turned on & don't miss out on New Videos!!!! ________ Watch also INDIA 🇮🇳 in 8K : https://youtu.be/x78fARg3yow Watch Mumbai, Maharashtra, India 🇮🇳 in 4K : https://youtu.be/afDUnE-a-us Watch Bengaluru, (Bangalore), India 🇮🇳 in 4K : https://youtu.be/eEr56MfFP6I Watch Udaipur, Rajasthan, India 🇮🇳 in 4K : https://youtu.be/awbSDvDCc_M Watch Calgary, Alberta, Canada 🇨🇦 in 4K : https://youtu.be/e3UyFOJ5d3M W...
✅ Don't forget to SUBSCRIBE to my channel by clicking here ➞ https://www.youtube.com/@MoreTravelsWithDrewBinsky ▶️ Watch my favorite videos ➞ https://www.youtube.com/watch?v=zMLHoHf4VWU&list=PLv8sTdl47iyDHwD2MPKeGlJo3rzP7pfr1 Delhi is certainly not for the faint-hearted! I decided to walk alone through the busiest street in town, which at rush hour, is the most crowded street in the world! Would you ever do this by yourself?! Also, do you like India? I have a love-hate relationship with the country, but something keeps pulling me back! Follow my travels on Instagram! https://instagram.com/drewbinsky This channel is actually my 2nd YouTube channel, if you want to see longer documentaries from my travels, then head over to my main channel! https://www.youtube.com/drewbinsky Follow m...
India's big cities are famous for their lively hustle and bustle. A documentary exploring beauty, justice, health and beer in India’s capital territory, Delhi. Delhi has a population of almost twenty million, and to film-maker Markus Spieker it sometimes seems as if Delhi has twice as many stories to tell: stories ranging from the traditional to the modern, from happiness to misery. He takes the viewer into the heart of the Old Town and into the modern Cyberhub, into malodorous canteens and exclusive restaurants. India is a country with incredible stories and huge contrasts. Metropolises like Delhi are growing at a tremendous rate. No matter how well you know the area, there is always something new to discover. As well as street cafés and exclusive restaurants, this documentary visits I...
The Municipal Corporation of Delhi (MCD) was a municipal corporation, an autonomous body that governs 8 of the 11 Districts of Delhi, in the state of Delhi, India. It was one of three municipal corporations in the National Capital Territory of Delhi, the others being New Delhi Municipal Council, and Delhi Cantonment Board. "The MCD was among the largest municipal bodies in the world providing civic services to more than estimated population of 11 million citizens in the capital city. The municipal corporation covers an area of 1,397.3 km² (539.5 mi²).
"Within its jurisdiction are some of the most densely populated areas in the world. It has also the unique distinction of providing civic services to rural and urban villages, resettlement colonies, regularised unauthorised colonies, Slum/Squatter Settlements, private 'katras' etc."
"MCD came into existence on the 7th of April, 1958 under and Act of Parliament. Prior to that DMC ( Delhi Municipal Committee ) was the principal civic body of Delhi. Eminent Freedom Fighter Guru Radha Kishan has the honour to represent MCD ( initially Delhi Municipal Committee ) for most consecutive years as a Councillor. The first elected Mayor of Delhi was Pt. Trilok Chand Sharma served as First Mayor of Delhi. Since then, the Municipal Body has always been alive in its constitution and functioning to the growing needs of citizens. The 1993 amendment of the Act brought about fundamental changes in composition, functions, governance and administration of the corporation."