- published: 25 Dec 2021
- views: 33225895
'+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.
"Heaven (Must Be There)" (sometimes shortened to just "Heaven") is a song by Eurogliders from their album This Island. The song was released as a 7" vinyl and a 12" in May 1984.
The single brought the band to fame, especially in Australia, where the single peaked at No. 2 on Kent Music Report Singles Chart in 1984. It was also a major hit in New Zealand, peaking at No. 6, and a more modest hit in North America, hitting No. 47 in Canada, and No. 65 in the US.
Elizabeth, also spelled Elisabeth (Greek Ἐλισάβετ) or Elisheba (from the Hebrew אֱלִישֶׁבַע / אֱלִישָׁבַע "My God has sworn"; Standard Hebrew Elišévaʿ Elišávaʿ, Tiberian Hebrew ʾĔlîšéḇaʿ ʾĔlîšāḇaʿ; Arabic أليصاباتAlyassabat), was the mother of John the Baptist and the wife of Zechariah, according to the Gospel of Luke.
According to the Gospel of Luke, Elizabeth was "of the daughters of Aaron" (1:5). She and her husband Zacharias were "righteous before God, walking in all the commandments and ordinances of the Lord blameless" (1:6-7), but childless. While he was in the temple of the Lord (1:8–12), Zacharias was visited by the angel Gabriel:
Zacharias doubted whereby he could know this since both he and his wife were very old. The angel identified himself as Gabriel and told Zacharias that he would be "dumb, and not able to speak" until the words were fulfilled, because he did not believe. When the days of his ministry were complete, he returned to his house (Luke 1:16-23).
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.
'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
Her Royal Majesty, Queen Elizabeth II, has died at 96 years old. The longest reigning Monarch in British history dedicated a life to public and voluntary service as one of the most important elements of her work. Editor: Hannah Pak Still haven’t subscribed to Vanity Fair on YouTube? ►► http://bit.ly/2z6Ya9M Want to stay in the know? Subscribe to Vanity Fair Magazine and be exquisitely informed ►► http://vntyfr.com/2RuQGW2 ABOUT VANITY FAIR Arts and entertainment, business and media, politics, and world affairs—Vanity Fair’s features and exclusive videos capture the people, places, and ideas that define modern culture.
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...
Queen Elizabeth The Queen Mother and Prince William represent two distinct generations of the British royal family. The Queen Mother, born in 1900, witnessed significant historical events, including both World Wars and the transformation of the monarchy throughout the 20th century. In contrast, Prince William, born in 1982, embodies the modern royal family, navigating contemporary issues while maintaining royal traditions. As the great-grandmother of Prince William, the Queen Mother played a significant role in shaping his understanding of royal responsibilities. Her influence can be seen in William's approach to his duties and his emphasis on family values. Both have shown a deep commitment to their roles within the monarchy while fostering strong familial bonds.
The Commonwealth, explained. Subscribe and turn on notifications 🔔 so you don't miss any videos: http://goo.gl/0bsAjO After centuries of colonizing much of the world, the British Empire began its fast descent in the 1960s amid a global wave of independence movements. But when Queen Elizabeth II died in 2022, she was not only still queen of 14 countries besides the United Kingdom, she was also still the leader of an organization that on a map looks a lot like the British Empire. The British Empire created the first iteration of the Commonwealth to appease white settler colonies looking for more autonomy. It granted them more independence to govern themselves but kept them under the crown. As British leaders realized their power might be at risk throughout their colonies worldwide, the ...
In one of her most famous speeches, then Princess Elizabeth addressed the Commonwealth from Cape Town, South Africa, on her 21st birthday. "I declare before you all that my whole life, whether it be long or short, shall be devoted to your service and the service of our great imperial family to which we all belong." Her life, as it turned out, would be long. She died Thursday at the age of 96, after serving 70 years on the throne — longer than any other British monarch in history. #Queen #QueenElizabeth #HRH #QueenElizabethII #RIPQueen #Royals #Royal #SouthAfrica #1947 #Canada #CBC #CBCNews #CBCTheNational
The Queen visited soldiers while on a visit to Fife, Scotland. She joked about their berets, asking one, “Do you keep it on the whole time, or does it blow off?” The soldier looked confused and replied: “Erm, it’s supposed to stay on when we’re stationary, Ma’am…”, and the Queen couldn’t control her laughter! #Short
Queen Elizabeth II had a great sense of humour, we've rounded up a few of our faves. Let us know what your fave. funny memory of the Queen is in the comments below. ► Subscribe to never miss an upload: http://bit.ly/2FufgBS ► READ at Fabulous: https://www.thesun.co.uk/fabulous/ ► LIKE us on Facebook: https://www.facebook.com/Fabulous ► FOLLOW us on Twitter: https://twitter.com/Fabulousmag ► On INSTAGRAM: https://www.instagram.com/fabulousmag/
The Queen and Paddington Bear get the Platinum Party at the Palace rocking.
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:
Yeah, I've been thinking about the years we've been together
And trust me
Actually this song is for you
And only you
Check it out
Oh thinking about our younger years
There was only you and me
We were young and wild and free
Now, nothing can take you away from me
We've been down that road before
But that's over now,
You keep me coming back for more...
Yeah, yes
[Chorus:]
Baby you're all that I want
When you're lying here in my arms
I'm finding it hard to believe
We're in Heaven
Love is all that I need
And I found it there in your heart
It isn't too hard to see
We're In Heaven
Oh once in your life you find someone
Who will turn your world around
Pick you up when you feeling down
Now, nothing can change what you mean to me
There's a lot that I could say
Just hold me now
Cause our love will light the way
Yeah, yeah
[Chorus:]
Baby you're all that I want
When you're lying there in my arms
I'm find it hard to believe
We're in Heaven
Love is all that I need
And I found it there in your heart
Isn't too hard to see
We're In Heaven
I've been waiting for so long
For something to arrive
For love to come along
Now our dreams are coming true
Through the good times and the bad
I'll be standing there by you...
Baby
[Chorus:]
Baby you're all that I want
When you're lying here in my arms
I'm finding it hard to believe
We're in Heaven
Love is all that I need
And I found it there in your heart
Isn't too hard to see
We're In Heaven
Baby you're all that I want
When you're lying here in my arms
I'm finding it hard to believe
We're in Heaven
Love is all that I need
And I found it there in your heart
It isn't too hard to see
We're In Heaven