- published: 13 Jan 2024
- views: 29443
'+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; })); }); -->
Queen Elizabeth, Queen Elisabeth, or Elizabeth the Queen may refer to:
Queen Elizabeth (ship) may refer to several ships:
Elizabeth I (7 September 1533 – 24 March 1603) was Queen of England and Ireland from 17 November 1558 until her death. Sometimes called The Virgin Queen, Gloriana or Good Queen Bess, the childless Elizabeth was the fifth and last monarch of the Tudor dynasty.
Elizabeth was the daughter of Henry VIII and Anne Boleyn, his second wife, who was executed two and a half years after Elizabeth's birth. Anne's marriage to Henry VIII was annulled, and Elizabeth was declared illegitimate. Her half-brother, Edward VI, ruled until his death in 1553, bequeathing the crown to Lady Jane Grey and ignoring the claims of his two half-sisters, Elizabeth and the Roman Catholic Mary, in spite of statute law to the contrary. Edward's will was set aside and Mary became queen, deposing Lady Jane Grey. During Mary's reign, Elizabeth was imprisoned for nearly a year on suspicion of supporting Protestant rebels.
In 1558, Elizabeth succeeded her half-sister to the throne and set out to rule by good counsel. She depended heavily on a group of trusted advisers, led by William Cecil, Baron Burghley. One of her first actions as queen was the establishment of an English Protestant church, of which she became the Supreme Governor. This Elizabethan Religious Settlement was to evolve into the Church of England. It was expected that Elizabeth would marry and produce an heir to continue the Tudor line. She never did, despite numerous courtships. As she grew older, Elizabeth became famous for her virginity. A cult grew around her which was celebrated in the portraits, pageants, and literature of the day.
Libby is a fictional character on the ABC drama television series Lost, which chronicles the lives of over forty people after their plane crashes on a remote island somewhere in the South Pacific. She is played by American actress Cynthia Watros. The character is first introduced as a member of the tail section survivors in the second season episode "Everybody Hates Hugo", together with Bernard, and she ends her role as a "living character" in the episode "?". Reception towards the character is generally positive, especially after her death, although controversy exists due to a traffic violation by the actress that plays her. While no surname was given for the character in the show, a clip reel of deceased characters at Comic-Con 2009 presented her full name as "Elizabeth Smith".
Libby appeared in twenty-four episodes, twenty-one of them in the second season, one in the fourth, and twice in season six in "Everybody Loves Hugo" and the finale. As of the end of the third season, she is the only main character not to have a centric episode that details her past, though a brief flashback at the end of the episode "Dave" is shown from her point of view. She was supposed to return during the third season, but did not make an appearance. Her first appearance after the second season was in the fourth season episode, "Meet Kevin Johnson".
The Elizabeth was a 194-ton merchant ship built at Singapore, British India in 1830. She made one voyage transporting convicts from the Swan River Colony to Sydney, Australia.
Under the command of Charles Pritchard, she left Singapore on 16 July 1838, with cargo and passengers. She called in at King George's Sound, then the Swan River Colony, where she offloaded some cargo and transported three prisoners, then sailed to Port Adelaide where she offloaded her passengers, called in at Port Phillip and then arrived in Sydney on 16 December 1838, where she offloaded the three prisoners and the rest of her cargo.Elizabeth departed Port Jackson in January 1829, under the command of Roberts Garrett bound for Guam and Manila in ballast.
Elizabeth is a feminine given name derived from the Greek Ελισάβετ (Elisabet, modern pronunciation Elisávet), which is a form of the Hebrew name Elisheva (אֱלִישֶׁבַע), meaning "My God is an oath" or "My God is abundance".
"Elizabeth" appears in the Old Testament as the name of Aaron's wife ("Elisheva"), and in the New Testament as the name of the wife of the priest Zechariah and mother of John the Baptist. It has also been the name of several saints and queens.
The name has many variants in use across the world and has been in consistent use worldwide. Elizabeth was the tenth most popular name given to baby girls in the United States in 2007 and has been among the 25 most popular names given to girls in the United States for the past 100 years. It is the only name that has remained in the top ten US girls' names list from 1925 to 1972.
It has been among the top 50 names given to girls born in England and Wales as well as in Canada and in Australia in the past 10 years and has been in the top 100 most popular names given to baby girls born in Scotland and Ireland in the past 10 years. Elizaveta (Eлизaвeтa), a Russian form of the name, has been in the top 10 names given to baby girls born in Moscow, Russia in the past 10 years. The name is also popular in Ukraine and in Belarus. One of the most popular variants is Isabel or Isabella. In French there is the variant Isabelle.
Queen is the soundtrack album by Amit Trivedi, to the 2014 Hindi film of the same name directed by Vikas Bahl and starring Kangana Ranaut in lead role. The album features eight tracks in a different array of genres. It was released digitally on 30 January 2014, and physically on 2 February 2014 at the Kala Ghoda Arts Festival in Mumbai, attended by the cast and crew of the film and preceded by Trivedi's performance.
Trivedi travelled to European cities like Amsterdam and Paris in search of inspiration for the album, while also working on four different film projects at the time. The album received positive reviews from critics. All the tracks are composed by Trivedi and written by Anvita Dutt, with the exception of "Ranjha" written by Raghu Nath, composed by Rupesh Kumar Ram and the producer of the film Anurag Kashyap.
Amit Trivedi composed the music soundtrack simultaneously working on four other ones like Ghanchakkar, Lootera, Bombay Talkies and Kusar Prasad Ka Bhoot in a time span of 5 months. The film based on a woman's self-discovery while travelling; Trivedi also travelled to Europe in Amsterdam, the film's shooting location so that he could understand the vibe and musical demand of the place in accordance with the local philosophy of "free living [..] especially in their [European] nightclubs". During the visit he also spent time in Paris and bonded with the locals there while working over music. Trivedi completed Ghanchakkar and Lootera before Queen.
It has been more than a year since the death of Queen Elizabeth and more details about her final moments are starting to emerge. The Daily Mail has seen new documents which tell that story, with one memo saying that she simply "slipped away" without any pain. Read more: https://news.sky.com/thequeen #thequeen #royalfamily #kingcharles SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews Follow us on TikTok: https://www.tiktok.com/@skynews For more content go to http://news.sky.com and download our apps: Apple https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 Android https://play.googl...
The Queen's principal aide, Sir Edward Young, has provided a detailed account of the moment of Her Majesty's demise in a remarkable book. Serving as the Queen's dedicated private secretary, Sir Young was present at Balmoral when she passed away on September 8, 2022. In a profoundly moving and extraordinary memorandum, Sir Young documented the hours leading up to Her Late Majesty's final breath. The devoted private secretary penned, "Very peaceful. In her sleep. Slipped away. Old age. She wouldn't have been aware of anything. No pain." These historical records, now securely archived in the Royal Archives, have remained confidential until this revelation. The unpublished notes are part of the fresh insights into the late monarch found in the recently published biography "Charles III: New K...
Being the Queen uses a treasure trove of never-before-heard interview recordings from those who know the Queen personally. Paired with deeply researched archival footage and photos, the one-hour special provides an in-depth look at her life and some of the most important, influential events in the history of the British monarchy. Head to the articles below to read more about the incredible life of Queen Elizabeth II Here is Queen Elizabeth II as National Geographic photographers saw her. See the images we never published: https://on.natgeo.com/3xcvcmh What Happens Now that Queen Elizabeth II Has Passed? https://on.natgeo.com/3RztHX9 Britain’s Most Unlikely Queen: https://on.natgeo.com/3qsw0PT ➡ Subscribe: http://bit.ly/NatGeoSubscribe ➡ Get more Nat Geo Full Episodes: https://yout...
'Moments the Queen Made Us Laugh in 2021' It's been a funny old year, but at least we've had the Queen keeping us cheerful. Here are some of our biggest Royal laughs. Follow us for more royal news, history, and highlights: ♛ Subscribe to our YouTube channel (tap the bell icon and stay up to date with all the latest Royal videos!) - https://bit.ly/3jNBYZ7 ♛ Find us on TikTok https://www.tiktok.com/@royalfamilychannel ♛ Follow us on Facebook - https://www.facebook.com/RoyalFamilyChannel ♛ Tweet with us! - https://twitter.com/RoyalFamilyITNP #theQueen #funny #Queen #Shorts #Royals #RoyalFamily
ITV News Correspondent Lucy Watson sat down with Queen Margrethe II of Denmark ahead of Queen Elizabeth II's Platinum Jubilee. The two royals are the only two reigning Queens in the world, and coincidentally, they're both celebrating Jubilees this year. • Subscribe to ITV News on YouTube: http://bit.ly/2lOHmNj • Get breaking news and more stories at http://www.itv.com/news Follow ITV News on Facebook: https://www.facebook.com/itvnews/ Follow ITV News on Twitter: https://twitter.com/itvnews Follow ITV News on Instagram: https://www.instagram.com/itvnews/
Queen Elizabeth II, the UK's longest-serving monarch, has died at Balmoral aged 96, after reigning for 70 years. The Queen came to the throne in 1952 and witnessed enormous social change. With her death, her eldest son Charles, the former Prince of Wales, will lead the country in mourning as the new King and head of state for 14 Commonwealth realms. In a statement, Buckingham Palace said: "The Queen died peacefully at Balmoral this afternoon." Please subscribe HERE http://bit.ly/1rbfUog
More details about Queen Elizabeth’s final moments before her death have been revealed. Queen Elizabeth II passed away in 2022 at the age of 96. Britain’s Daily Mail has seen new documents including a memo that states she slipped away without any pain. A new book by Royal Biographer Robert Hardman has made public the family’s private moments. The book features a memo written by the Queen’s private secretary detailing the Queen’s final moments.
'It's why Prince William didn't reply to Prince Harry's alleged text!' Rafe Heydel-Mankoo discusses previously unknown details surrounding the Queen’s death which have now been revealed. #royal #royalnews #princeharry Keep up to date with the latest news at https://www.gbnews.com Join us today and unlock your members-only benefits: http://gbnews.com/support Twitter: https://twitter.com/GBNEWS Facebook: https://www.facebook.com/GBNewsOnline Download the GB News app! You can watch GB News on all of your favourite devices and keep up to date with the latest news, analysis, opinion and more. https://www.gbnews.com/watch/how-to-watch
A look back at the extraordinary life of Britain's longest-reigning monarch, Her Majesty Queen Elizabeth II. SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews Follow us on TikTok: https://www.tiktok.com/@skynews For more content go to http://news.sky.com and download our apps: Apple https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 Android https://play.google.com/store/apps/details?id=com.bskyb.skynews.android&hl=en_GB Sky News Daily podcast is available for free here: https://podfollow.com/skynewsdaily/ Sky News videos are now available in Spanish here/Los video de Sky News está...
When Crown Princess Elizabeth married Prince Philip in 1947, Britain was in dire economic straits and living on "coupons". Elizabeth and Philip thought they would limit themselves to a modest family wedding, believing that public festivities would be inappropriate, but the British convinced Elizabeth that they were looking forward to a real celebration and were ready to share it with their princess. The 21-year-old bride couldn't just go to a shop and choose fabric for her dress - she needed coupons. So the people of Britain began to send her their coupons for fabrics with good wishes. Of course, Elizabeth did not take advantage of the gifts - it would have been illegal to trade other people's cards and they were sent back. But Her Highness saved up her own coupons and she collected 200 co...
For NordVPN’s birthday, every purchase of a 2-year plan will get you 1 additional month free AND a surprise gift. Go to https://nordvpn.com/thepeopleprofiles and use code thepeopleprofiles For early access to our videos, discounted merch and many other exclusive perks please support us via Patreon: http://www.patreon.com/thepeopleprofiles, Buy me a Coffee: https://www.buymeacoffee.com/peopleprofiles or Join as a YouTube member: https://www.youtube.com/channel/UCD6TPU-PvTMvqgzC_AM7_uA/join The script for this video has been checked with Plagiarism software and scored 1% on Grammarly. In academia, a score of below 15% is considered good or acceptable. All footage, images and music used in People Profiles Documentaries are sourced from free media websites or are purchased with commercial ...
A brief history of Queen Elizabeth I of England. Time Stamps: 0:00 Intro 0:52 Early Life 9:39 An Unfortunate Sister 30:42 A Dangerous Web Of Politics 55:47 The Queen Of Scots 1:10:20 Religion & Blood 1:37:12 The Catholic Threat 1:53:13 The Death Of Elizabeth I Attribution Videos All videos not notated below were collected through royalty free websites and require no attribution. Woman Writing -Videezy - Free Stock Footage http://www.videezy.com/ Pen Writing - Videezy - Free Stock Footage http://www.videezy.com/ Photos All pictures were collected under creative commons license, public domain, royalty free websites or with permission from copyright holders. Any photos not notated below were collected via public domain. If there is an error in this, please contact me and I will adj...
Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundle ebook covering Greek, Norse, and Egyptian mythology here: http://www.captivatinghistory.com/ebook You can get the audiobook version of Elizabeth I here: https://www.audible.com/pd/B07N15MRY8/?source_code=AUDFPWS0223189MWT-BK-ACX0-140548&ref=acx_bty_BK_ACX0_140548_rh_us You can get the paperback version of Elizabeth I here: https://www.amazon.com/Elizabeth-Captivating-Guide-England-Monarchs/dp/1793087423 And the ebook version of the Elizabeth I here: https://www.amazon.com/Elizabeth-Captivating-Guide-England-Monarchs-ebook/dp/B07MP92GXH Elizabeth Tudor, daughter of the ill-fated Queen Anne Boleyn and temperamental King Henry VIII, was never meant to rule the country. Yet, when her time came, she...
Please consider supporting our videos on Patreon https://www.patreon.com/simplehistory Elizabeth I, Queen of England (1533 - 1603) During Elizabeth's reign, England saw a golden age of progress. Please do not reupload our content! SIMPLE HISTORY MERCHANDISE Get the SImple History books on Amazon: https://www.amazon.com/Daniel-Turner-%60/e/B00H5TYLAE/ T-Shirts https://www.zazzle.com/simplehistory/gifts?cg=196817456987349853 Simple history gives you the facts, simple! See the book collection here: Amazon USA http://www.amazon.com/Daniel-Turner/e/B00H5TYLAE/ Amazon UK http://www.amazon.co.uk/Daniel-Turner/e/B00H5TYLAE/ http://www.simplehistory.co.uk/ https://www.facebook.com/Simple-History-549437675141192/ https://twitter.com/simple_guides Credit: Narrator: Christian H...
Elizabeth I ruled England for 44 busy years. Learn more about the Queen who refused to marry in this video. #Biography Subscribe for more from HISTORY: http://histv.co/SubscribeHistoryYT Check out exclusive HISTORY content: Website - http://www.history.com?cmpid=Social_YouTube_HistHome Twitter - https://twitter.com/history Facebook - https://www.facebook.com/History Bio Shorts Season 1 Episode 1 Biography features in-depth profiles of the exceptional people whose lives and times stir our imagination. An Emmy award-winning documentary series, Biography thrives on rich details, fascinating portraits and historical accuracy, seasoned with insider insights and observations. HISTORY®, now reaching more than 98 million homes, is the leading destination for award-winning original series and...
Get your free trial of The Great Courses Plus: http://ow.ly/IDmc30r8uCa Part 2: https://youtu.be/LnC4Q8AD3JM Please consider supporting me at: https://www.patreon.com/LindsayHoliday Elizabeth I of England, daughter of Henry VIII was never expected to be queen. But after her brother and sister died she became one of England’s greatest rulers. She swore off men and was a brilliant leader who proved that a woman could rule just as well as a man. I make mini documentaries about women's history and royal history: Queens of the World: https://www.youtube.com/watch?v=_lxDVWL1aN4&list=PLsiuz33wEZhj6CFEHrw47ulNyvyHO57J8 A History of... https://www.youtube.com/watch?v=_A8yKzJN-C0&list=PLsiuz33wEZhii9xcG1p2FmkfzWf2Axv8b Royal History: https://www.youtube.com/watch?v=QnisWy9P9u0&list=PLsiuz33wEZh...
England's Greatest Queen Elizabeth I - The Golden Era - Royal Documentary 👉👉 Please subscribe our channel: https://www.youtube.com/channel/UCJsIoOvCcI8FTLo0mH8SspA Thanks For Watching !!! #TheQueen #QueenElizabethI
Join this channel to get access to perks: https://www.youtube.com/channel/UCLaL_1BgxTz1528xgAbGhTA/join A woman in a man’s world. Though strong-willed, intelligent and passionate, Queen Elizabeth I is keenly aware that her life is in constant peril. With her died the Tudor dynasty, but the changes she made to politics and parliament show the beginnings of the conception of the England that we know and love today. Find us on other platforms: https://linktr.ee/royalty.tv
Elizabeth's youth was fraught, her mother beheaded by her father. An unwanted heiress, she was born the "out of sight" princess. But destiny awaited. After her siblings' reigns, Elizabeth ascended the throne, her intelligence and poise marking the brilliant Elizabethan age.
Queen Elizabeth the first may have been a virgin who can’t drive but what most people don’t know is that she was one of the most brutally cut-throat and significant rulers England has ever had. A badass to some, a merciless imperialist to others, it’s clear that our girl Liz stands out among the storied lineage of English monarchy. #QueenElizabethI #QueenOfEngland #WeirdHistory
Queen Elizabeth, Queen Elisabeth, or Elizabeth the Queen may refer to:
I am the son of Adolf Hitler
my father was a monster
and my mother
oh poor mother
sometimes it's hard
sometimes it's heavy to carry
and every son of
should join their hands
to tell the good people
we're not sons of ...
we're not sons of ...
we're freaks
I'm walking by the streets
real screamings, real spits
And here are your wives saying