'+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; })); }); -->

Charlemagne

Charlemagne (/ˈʃɑːrlmn/; 2 April 742/747/748  28 January 814), also known as Charles the Great (Latin: Carolus or Karolus Magnus) or Charles I, was King of the Franks. He united most of Western Europe during the early Middle Ages and laid the foundations for modern France and Germany. He took the Frankish throne in 768 and became King of Italy from 774. From 800 he became the first Holy Roman Emperor — the first recognized emperor in Western Europe since the fall of the Western Roman Empire three centuries earlier. While Charlemagne already ruled his kingdom without the help of the Pope, recognition from the pontiff granted him divine legitimacy in the eyes of his contemporaries.

The expanded Frankish state Charlemagne founded was called the Carolingian Empire.

The oldest son of Pepin the Short and Bertrada of Laon, Charlemagne became king in 768 following the death of his father. He was initially co-ruler with his brother Carloman I. Carloman's sudden death in 771 under unexplained circumstances left Charlemagne as the undisputed ruler of the Frankish Kingdom. Charlemagne continued his father's policy towards the papacy and became its protector, removing the Lombards from power in northern Italy, and leading an incursion into Muslim Spain. He also campaigned against the Saxons to his east, Christianizing them upon penalty of death, leading to events such as the Massacre of Verden. Charlemagne reached the height of his power in 800 when he was crowned Emperor of the Romans by Pope Leo III on Christmas Day at Old St. Peter's Basilica.

Regina

Regina (Latin for "queen") may refer to:

Places

  • Regina, Saskatchewan, the capital city of Saskatchewan, Canada
  • Regina (electoral district)
  • Roman Catholic Archdiocese of Regina
  • Régina, French Guiana
  • Regina, Minneapolis, U.S.
  • Regina, New Mexico, U.S.
  • Regina, Wisconsin, U.S.
  • Persons

  • Regina (name)
  • Regina (concubine), 8th century French concubine of Charlemagne
  • Regina (martyr), 3rd century French martyr
  • Regina Richards (born 1961), American singer with stage name of Regina
  • Regina (singer) (born 1965), Slovenian singer
  • Regina "Queen" Saraiva (born 1978), Eurodance Singer with stage name of Regina
  • Other uses

  • Regina (film)
  • Regina (Lortzing), 1848 opera by Albert Lortzing, first performed in 1899
  • Regina (opera), a 1948 opera by Marc Blitzstein
  • Regina (play), a 1997 Mexican musical
  • Regina (genus), a genus of colubrid snakes
  • Regina (train), a Swedish model of passenger train
  • Regina (pottery), Dutch art pottery manufactured by Kunstaardewerkfabriek Regina
  • Regina (film)

    Regina is a 1987 Italian drama film directed by Salvatore Piscicelli.

    Cast

  • Ida Di Benedetto: Regina
  • Fabrizio Bentivoglio: Lorenzo
  • Giuliana Calandra: Lalla
  • Mariano Rigillo
  • References

    External links

  • Regina at the Internet Movie Database

  • Regina (Monterrey Metro)

    The Regina Station (Spanish: Estación Regina) is a station on Line 2 of the Monterrey Metro. It is located along Alfonso Reyes Avenue where it is intersected by Juan Sánchez Azcona street.

    This station is three blocks away from the Monumental Monterrey (Monterrey's main Bullfighting ring) and across the street from the Coca-Cola bottler. Its logo represents the architecture of the station's entrance, and it is accessible for people with disabilities.

    This station was inaugurated on October 31, 2007. It was part of the first stage of the Line 2 expansion (along with Niños Heroes Station and Universidad), being the only underground station of the Line 2 extension project.

    See also

  • List of Monterrey metro stations
  • References

    Podcasts:

    • Charlemagne: How He Changed History Forever

      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 Charlemagne here: https://www.audible.com/pd/B08GKS1QWG/?source_code=AUDFPWS0223189MWT-BK-ACX0-213462&ref=acx_bty_BK_ACX0_213462_rh_us You can get the paperback version of Charlemagne here: https://www.amazon.com/Charlemagne-Captivating-Greatest-Carolingian-Lombards/dp/1647488354 And the ebook version of Charlemagne here: https://www.amazon.com/Charlemagne-Captivating-Greatest-Carolingian-Lombards-ebook/dp/B08CSSXYTY Warrior. Ruler. Patron of the arts and language. Terrorist. Brutal oppressor. Protector of the good. Guardian of Christendom. Father of Europe. The...

      published: 27 Jul 2021
    • Charlemagne - Father of the Holy Roman Empire Documentary

      For early access to our videos, discounted merch and many other exclusive perks please support us as a Patron or Member... Patreon: http://www.patreon.com/thepeopleprofiles Buy me a Coffee: https://www.buymeacoffee.com/peopleprofiles YouTube Membership: https://www.youtube.com/channel/UCD6TPU-PvTMvqgzC_AM7_uA/join or follow us on Twitter! https://twitter.com/tpprofiles Hello guys! If you like our work please subscribe to our second channel The History Chronicles https://www.youtube.com/c/TheHistoryChronicles The script for this video has been checked with Plagiarism software and scored 2% 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 purch...

      published: 04 Jan 2023
    • Ten Minute History - Charlemagne and the Carolingian Empire (Short Documentary)

      Twitter: https://twitter.com/Tenminhistory Patreon: https://www.patreon.com/user?u=4973164 This episode of Ten Minute History (like a documentary, only shorter) covers the turmoil in the Frankish Kingdom which led to the rise of Charles Martel who famously defeated the invading forces of the Umayyad Caliphate at the Battle of Tours. His reign and that of his son, Pippin III, who appointed himself as king are briefly covered before the reign of Charlemagne is examined in detail. Charlemagne is without a doubt one of the most famous European monarchs and the Renaissance of Learning, his conquests and famously, his being crowned as Roman Emperor by Leo III are only a few of his achievements. His reign lasted for 47 years and after his grandsons divided the empire, the remnants became the Kin...

      published: 04 Aug 2018
    • Blossoms - Charlemagne

      Charlemagne. Get it on iTunes: http://po.st/BlChariT Listen on Spotify: http://po.st/BlCharSP or Apple Music: http://po.st/BlCharAM The debut album ‘Blossoms’ is OUT NOW. Buy on iTunes: http://po.st/BB28iT Listen on Spotify: http://po.st/soBsp Facebook: http://po.st/BLfb Twitter: http://po.st/BLtw Instagram: http://po.st/BLin http://www.blossomsband.co.uk Facebook: http://po.st/BLfb Twitter: http://po.st/BLtw Instagram: http://po.st/BLin http://www.blossomsband.co.uk http://vevo.ly/lsMj70

      published: 29 Jun 2016
    • Charlemagne: Father of Medieval Europe - DOCUMENTARY

      Charlemagne was king of the Franks, and emperor of western Christendom. Out of the turmoil of the Early Middle Ages, he united the bulk of western and central Europe, and laid the groundwork for the modern European world. He was a patron of the arts and education, instigator of the flowering of learning known as the Carolingian Renaissance. He was also a fierce conqueror, who fought to impose his rule on the Saxons. He faced defeats as well as victories, losing the rearguard of his army at the famous Battle of Roncesvalles, where he suffered a personal tragedy as well, losing his friend and companion-in-arms, Roland. Watch our video about the crusader power couple Queen Morphia and King Baldwin II of Jerusalem: https://www.youtube.com/watch?v=9w2Rr3TX1uU Get my book about the Crusades: h...

      published: 26 Mar 2022
    • Charlemagne: The Father of Europe

      Try out Skillshare for FREE: https://skl.sh/biographics3 → Subscribe for new videos four times per week. https://www.youtube.com/c/biographics?sub_confirmation=1 This video is #sponsored by Skillshare. TopTenz Properties Our companion website for more: http://biographics.org Our sister channel TopTenz: https://www.youtube.com/channel/UCQ-hpFPF4nOKoKPEAZM_THw/ Our Newest Channel about Interesting Places: https://studio.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw Credits: Host - Simon Whistler Author - Arnaldo Teodorani Producer - Jennifer Da Silva Executive Producer - Shell Harris Business inquiries to biographics.email@gmail.com Other Biographics Videos: Eugène Vidocq: The Father of Modern Criminology https://youtu.be/sE9Sgufrdvo Hasan Sabbah: Legend of the Assassins https://youtu...

      published: 05 Sep 2019
    • Who was Charlemagne?

      Charlesmagne was one of the great kinds of medieval Europe. He was coronated by the pope in 800 A.D. and spread the faith of Christianity by sword and conversion. Charlesmagne therefore is controversial, but this 30-mintue video tells his story quickly. Support the channel on Patreon: https://patreon.com/user?u=23593673 Still haven’t subscribed to the channel? ►► https://goo.gl/KNKDPg My books (affiliate links): "How We Got Our Bible" (Zondervan, 2018): https://amzn.to/2MtmSYY "Story of Creeds and Confessions" (Baker Academic, 2019): https://amzn.to/3OVDyGQ For the entire course on 'Church History: Reformation to Modern', see the playlist: https://www.youtube.com/playlist?list=PLRgREWf4NFWY1ZaP-falnLFIR9texgvjR

      published: 28 May 2014
    • Charlemagne For Kids

      Learn about Charlemagne or Charles the Great, the powerful king who conquered much of Europe and spread educational and economic reforms across his newfound kingdom.

      published: 02 Apr 2019
    • Charlemagne | Emperor of the Carolingian Empire

      Charlemagne, also known as Charles the Great, (2 April 742 - 28 January 814), united the majority of western and central Europe in what became known as the Carolingian Empire, the first major empire in western Europe since the fall of the Western Roman Empire.The stability of Charlemagne's empire gave birth to an age of prosperity and development known as the Carolingian Renaissance. During this time, Charlemagne gathered many of Europe's greatest scholars and artists to his court and instituting an education system for the ruling class based on those of the former Roman Empire. This period of time is perhaps best remembered for a surge in the restoration and creation of monumental architecture, great cathedrals and churches, and for the large amounts of ancient art that were preserved by ...

      published: 07 Nov 2024
    • Charlemagne (Part 1/2) 📜 The Rise

      🚩 The first 1,000 people to use this link will get a 1 month free trial of Skillshare: https://skl.sh/historymarche12201 🚩 Consider supporting my work on Patreon and enjoy ad-free videos: https://www.patreon.com/historymarche 📢 Narrated by David McCallion 🎼 Music, courtesy of EpidemicSound 📝 Sources: "The Carolingian Renaissance" by John G. Contreni (1984) Charlemagne: The Formation of a European Identity by Rosamond McKitterick (2008) https://www.amazon.com/Charlemagne-Formation-European-Rosamond-McKitterick/dp/0521716454 Lumen Learning - The Rise of Charlemagne (2021) https://courses.lumenlearning.com/atd-herkimer-westerncivilization/chapter/the-rise-of-charlemagne/ #charlemagne #holyromanempire #skillshare

      published: 07 Aug 2021
    developed with YouTube
    Charlemagne: How He Changed History Forever
    8:42

    Charlemagne: How He Changed History Forever

    • Order:
    • Duration: 8:42
    • Uploaded Date: 27 Jul 2021
    • views: 515381
    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 Charlemagne here: https://www.audible.com/pd/B08GKS1QWG/?source_code=AUDFPWS0223189MWT-BK-ACX0-213462&ref=acx_bty_BK_ACX0_213462_rh_us You can get the paperback version of Charlemagne here: https://www.amazon.com/Charlemagne-Captivating-Greatest-Carolingian-Lombards/dp/1647488354 And the ebook version of Charlemagne here: https://www.amazon.com/Charlemagne-Captivating-Greatest-Carolingian-Lombards-ebook/dp/B08CSSXYTY Warrior. Ruler. Patron of the arts and language. Terrorist. Brutal oppressor. Protector of the good. Guardian of Christendom. Father of Europe. There are so many different ways in which Charlemagne can be described, and yet the man himself is often seen as an enigma. Depending on the viewpoint of history, he could have been either a monster or a guardian angel. Yet, as with most men, the truth lies somewhere in between. The truth is that he was human. See all captivating history books here: https://www.amazon.com/author/captivatinghistory Follow us on Facebook: https://www.facebook.com/captivatinghistory Follow us on Twitter: @CaptivHistory
    https://wn.com/Charlemagne_How_He_Changed_History_Forever
    Charlemagne - Father of the Holy Roman Empire Documentary
    1:00:56

    Charlemagne - Father of the Holy Roman Empire Documentary

    • Order:
    • Duration: 1:00:56
    • Uploaded Date: 04 Jan 2023
    • views: 736716
    For early access to our videos, discounted merch and many other exclusive perks please support us as a Patron or Member... Patreon: http://www.patreon.com/thepeopleprofiles Buy me a Coffee: https://www.buymeacoffee.com/peopleprofiles YouTube Membership: https://www.youtube.com/channel/UCD6TPU-PvTMvqgzC_AM7_uA/join or follow us on Twitter! https://twitter.com/tpprofiles Hello guys! If you like our work please subscribe to our second channel The History Chronicles https://www.youtube.com/c/TheHistoryChronicles The script for this video has been checked with Plagiarism software and scored 2% 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 rights from online media archives. #Biography #History #Documentary
    https://wn.com/Charlemagne_Father_Of_The_Holy_Roman_Empire_Documentary
    Ten Minute History - Charlemagne and the Carolingian Empire (Short Documentary)
    10:00

    Ten Minute History - Charlemagne and the Carolingian Empire (Short Documentary)

    • Order:
    • Duration: 10:00
    • Uploaded Date: 04 Aug 2018
    • views: 2198963
    Twitter: https://twitter.com/Tenminhistory Patreon: https://www.patreon.com/user?u=4973164 This episode of Ten Minute History (like a documentary, only shorter) covers the turmoil in the Frankish Kingdom which led to the rise of Charles Martel who famously defeated the invading forces of the Umayyad Caliphate at the Battle of Tours. His reign and that of his son, Pippin III, who appointed himself as king are briefly covered before the reign of Charlemagne is examined in detail. Charlemagne is without a doubt one of the most famous European monarchs and the Renaissance of Learning, his conquests and famously, his being crowned as Roman Emperor by Leo III are only a few of his achievements. His reign lasted for 47 years and after his grandsons divided the empire, the remnants became the Kingdom of France and the Holy Roman Empire. Ten Minute History is a series of short, ten minute animated narrative documentaries that are designed as revision refreshers or simple introductions to a topic. Please note that these are not meant to be comprehensive and there's a lot of stuff I couldn't fit into the episodes that I would have liked to. Thank you for watching, though, it's always appreciated. Recommended books: Chris Wickham - The Inheritance of Rome: A History of Europe from 400 to 1000. - Seriously one of the best works on the period known as the Dark Ages, it covers everything from the collapse of the Western Roman Emperor to the nomads in Eastern Europe in an easily consumable format. An amazing book. Rosamond Mckitterick - Charlemagne: The Formation of a European Identity. - This one is by my old lecturer and so I'd advise it for undergrads or enthusiasts only. It is probably the best book on Charlemagne's reign available and is up to date on the new findings surrounding things like where he conquered and his personal education. Few maps though, so boo there.
    https://wn.com/Ten_Minute_History_Charlemagne_And_The_Carolingian_Empire_(Short_Documentary)
    Blossoms - Charlemagne
    2:52

    Blossoms - Charlemagne

    • Order:
    • Duration: 2:52
    • Uploaded Date: 29 Jun 2016
    • views: 9219693
    Charlemagne. Get it on iTunes: http://po.st/BlChariT Listen on Spotify: http://po.st/BlCharSP or Apple Music: http://po.st/BlCharAM The debut album ‘Blossoms’ is OUT NOW. Buy on iTunes: http://po.st/BB28iT Listen on Spotify: http://po.st/soBsp Facebook: http://po.st/BLfb Twitter: http://po.st/BLtw Instagram: http://po.st/BLin http://www.blossomsband.co.uk Facebook: http://po.st/BLfb Twitter: http://po.st/BLtw Instagram: http://po.st/BLin http://www.blossomsband.co.uk http://vevo.ly/lsMj70
    https://wn.com/Blossoms_Charlemagne
    Charlemagne: Father of Medieval Europe - DOCUMENTARY
    1:08:19

    Charlemagne: Father of Medieval Europe - DOCUMENTARY

    • Order:
    • Duration: 1:08:19
    • Uploaded Date: 26 Mar 2022
    • views: 395629
    Charlemagne was king of the Franks, and emperor of western Christendom. Out of the turmoil of the Early Middle Ages, he united the bulk of western and central Europe, and laid the groundwork for the modern European world. He was a patron of the arts and education, instigator of the flowering of learning known as the Carolingian Renaissance. He was also a fierce conqueror, who fought to impose his rule on the Saxons. He faced defeats as well as victories, losing the rearguard of his army at the famous Battle of Roncesvalles, where he suffered a personal tragedy as well, losing his friend and companion-in-arms, Roland. Watch our video about the crusader power couple Queen Morphia and King Baldwin II of Jerusalem: https://www.youtube.com/watch?v=9w2Rr3TX1uU Get my book about the Crusades: http://www.amazon.com/Why-Does-Heathen-Rage-Crusades/dp/152395762X/ref=sr_1_1?ie=UTF8&qid=1461105827&sr=8-1&keywords=why+does+the+heathen+rage Support my work on Patreon: https://www.patreon.com/RealCrusadesHistory Sources: -Barraclough, Geoffrey - The Crucible of Europe: The Ninth and Tenth Centuries in European History, (University of California, 1976) -Collins, Roger - Charlemagne, (University of Toronto, 1998) -Ferguson, Robert - The Vikings, (Penguin, 2010) -Nelson, Janet - King and Emperor: A New Life of Charlemagne, (University of California, 2019) -Thorndike, Lynn - The History of Medieval Europe: from the Fall of Rome to the Italian Renaissance, (Houghton Mifflin, 1917) -Einhard and Notker the Stammerer - Two Lives of Charlemagne (Penguin Classics, 2008) -Winston, Richard - Charlemagne, (Horizon, 2016) Animated maps by Daniel Weiss Narrated by J Stephen Roberts and Tom Wylde #Charlemagne #MedievalHistory #HolyRomanEmpire
    https://wn.com/Charlemagne_Father_Of_Medieval_Europe_Documentary
    Charlemagne: The Father of Europe
    21:53

    Charlemagne: The Father of Europe

    • Order:
    • Duration: 21:53
    • Uploaded Date: 05 Sep 2019
    • views: 1394175
    Try out Skillshare for FREE: https://skl.sh/biographics3 → Subscribe for new videos four times per week. https://www.youtube.com/c/biographics?sub_confirmation=1 This video is #sponsored by Skillshare. TopTenz Properties Our companion website for more: http://biographics.org Our sister channel TopTenz: https://www.youtube.com/channel/UCQ-hpFPF4nOKoKPEAZM_THw/ Our Newest Channel about Interesting Places: https://studio.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw Credits: Host - Simon Whistler Author - Arnaldo Teodorani Producer - Jennifer Da Silva Executive Producer - Shell Harris Business inquiries to biographics.email@gmail.com Other Biographics Videos: Eugène Vidocq: The Father of Modern Criminology https://youtu.be/sE9Sgufrdvo Hasan Sabbah: Legend of the Assassins https://youtu.be/OUVY3CFQAGY
    https://wn.com/Charlemagne_The_Father_Of_Europe
    Who was Charlemagne?
    29:10

    Who was Charlemagne?

    • Order:
    • Duration: 29:10
    • Uploaded Date: 28 May 2014
    • views: 1564363
    Charlesmagne was one of the great kinds of medieval Europe. He was coronated by the pope in 800 A.D. and spread the faith of Christianity by sword and conversion. Charlesmagne therefore is controversial, but this 30-mintue video tells his story quickly. Support the channel on Patreon: https://patreon.com/user?u=23593673 Still haven’t subscribed to the channel? ►► https://goo.gl/KNKDPg My books (affiliate links): "How We Got Our Bible" (Zondervan, 2018): https://amzn.to/2MtmSYY "Story of Creeds and Confessions" (Baker Academic, 2019): https://amzn.to/3OVDyGQ For the entire course on 'Church History: Reformation to Modern', see the playlist: https://www.youtube.com/playlist?list=PLRgREWf4NFWY1ZaP-falnLFIR9texgvjR
    https://wn.com/Who_Was_Charlemagne
    Charlemagne For Kids
    5:12

    Charlemagne For Kids

    • Order:
    • Duration: 5:12
    • Uploaded Date: 02 Apr 2019
    • views: 169277
    Learn about Charlemagne or Charles the Great, the powerful king who conquered much of Europe and spread educational and economic reforms across his newfound kingdom.
    https://wn.com/Charlemagne_For_Kids
    Charlemagne | Emperor of the Carolingian Empire
    0:53

    Charlemagne | Emperor of the Carolingian Empire

    • Order:
    • Duration: 0:53
    • Uploaded Date: 07 Nov 2024
    • views: 465
    Charlemagne, also known as Charles the Great, (2 April 742 - 28 January 814), united the majority of western and central Europe in what became known as the Carolingian Empire, the first major empire in western Europe since the fall of the Western Roman Empire.The stability of Charlemagne's empire gave birth to an age of prosperity and development known as the Carolingian Renaissance. During this time, Charlemagne gathered many of Europe's greatest scholars and artists to his court and instituting an education system for the ruling class based on those of the former Roman Empire. This period of time is perhaps best remembered for a surge in the restoration and creation of monumental architecture, great cathedrals and churches, and for the large amounts of ancient art that were preserved by Charlemagne's empire. While Charlemagne was lauded throughout Europe and by the Pope as the true Romand Emperor, this created a schism with the Byzantine Empire (aka the Eastern Roman Empire), and was among the reasons for the split of Rome and Constantinople, creating what is now called the Catholic and East Orthodox churches. #commandandconquer #history #historia #historyfacts #charlemagne
    https://wn.com/Charlemagne_|_Emperor_Of_The_Carolingian_Empire
    Charlemagne (Part 1/2) 📜 The Rise
    16:49

    Charlemagne (Part 1/2) 📜 The Rise

    • Order:
    • Duration: 16:49
    • Uploaded Date: 07 Aug 2021
    • views: 401097
    🚩 The first 1,000 people to use this link will get a 1 month free trial of Skillshare: https://skl.sh/historymarche12201 🚩 Consider supporting my work on Patreon and enjoy ad-free videos: https://www.patreon.com/historymarche 📢 Narrated by David McCallion 🎼 Music, courtesy of EpidemicSound 📝 Sources: "The Carolingian Renaissance" by John G. Contreni (1984) Charlemagne: The Formation of a European Identity by Rosamond McKitterick (2008) https://www.amazon.com/Charlemagne-Formation-European-Rosamond-McKitterick/dp/0521716454 Lumen Learning - The Rise of Charlemagne (2021) https://courses.lumenlearning.com/atd-herkimer-westerncivilization/chapter/the-rise-of-charlemagne/ #charlemagne #holyromanempire #skillshare
    https://wn.com/Charlemagne_(Part_1_2)_📜_The_Rise
    • Regina Is Working With The STALKER!

      Daniela is suspicious of her best friend, Regina. She goes in disguise to see if her theories that Regina is working with the stalker is true. Turns out, Regina IS working with the stalker!! Follow us :-) TikTok Regina & Daniela ⇢ https://www.tiktok.com/@reginandaniela_ Regina ⇢ https://www.tiktok.com/@reginamochii Daniela ⇢ https://www.tiktok.com/@danielaagui1ar Instagram Regina & Daniela ⇢ https://instagram.com/reginandaniela Regina ⇢ https://instagram.com/reginamochii Daniela ⇢ https://www.instagram.com/danielaagui1ar ⇢ business email: ronit@cohntalent.com

      published: 14 Aug 2024
    • NOUA UNSPE - REGINA (Official Music Video)

      Stream & Download "REGINA": https://nouaunspe.bfan.link/regina NOUA UNSPE: Instagram: https://instagram.com/nouaunspe TikTok: https://www.tiktok.com/@nouaunspe Spotify: https://open.spotify.com/artist/1fYKCWegShlSGe4yATnpdp Apple Music: https://music.apple.com/ro/artist/noua-unspe/1508310963 Audio Credits: Lyrics: NOUA UNSPE Music: NOUA UNSPE, CST Produced by: CST Video Credits: Directed by Quba DOP : Codruta Corocea 1st AD : Moza Kaliza Edit & Color: Quba Production : Loops (C) 2024 Global Records & Seek Music (P) 2024 Global Records Toate drepturile sunt rezervate. Orice upload neautorizat al acestui videoclip este ilegal si poate fi raportat oricand la Youtube. All rights reserved. Unauthorized reproduction is a violation of applicable laws. In order to avoid copyright infring...

      published: 12 Apr 2024
    • SUBBITO - CARA & REGINA (OFFICIAL VIDEO)

      Rec, Mix e master: Icy Entertainment Hairstyle: Ladydewig Video a cura di Kunai Studio Thanks to: Ada Music e Gianfranco Bortolotti Music by: BigDeal Records Instagram: https://www.instagram.com/bigdealrec/ For license, cover or remix: bigdealrec@gmail.com

      published: 12 Jul 2024
    • SHE HAS A SECRET ROOM! What Is My BFF HIDING?!

      Regina has ANOTHER secret room! Since this isn't her first time hiding a secret like this, Daniela, Daniel, Melvin and Dane try to unlock the secrets hidden within the room. Follow us :-) TikTok Regina & Daniela ⇢ https://www.tiktok.com/@reginandaniela_ Regina ⇢ https://www.tiktok.com/@reginamochii Daniela ⇢ https://www.tiktok.com/@danielaagui1ar Instagram Regina & Daniela ⇢ https://instagram.com/reginandaniela Regina ⇢ https://instagram.com/reginamochii Daniela ⇢ https://www.instagram.com/danielaagui1ar ⇢ business email: ronit@cohntalent.com

      published: 11 Aug 2024
    • 我也遇到詐騙了!為了買精品包被騙了20萬😭|報警、開庭訴訟流程與結果

      +訂閱我的Youtube頻道 https://goo.gl/P94QPa ❚ Social Media;社群平台 Instagram @thereginatw https://instagram.com/thereginatw Facebook https://www.facebook.com/thereginatw/ Blog http://theregina.com/ ❚ Contact by Mail;合作請Mail thereginatw@gmail.com ❚ items in Video;影片資訊 2021遇到詐騙的經歷 全案經過兩年才算有個結論 比我慘烈的人一定更多,希望大家對於金錢都能更加謹慎警戒 關於投資、網購都務必要小心查證 ❚ About My Look;影片行頭 Eyelash Extensions|睫毛: Deerlash Hair Color|髮色: Zin Hair Styling Winnie ❚ This video is not sponsored.;非合作影片

      published: 08 Aug 2024
    • Noua Unspe - Regina (Official Visual)

      All rights goes to ​⁠@NouaUnspe I do not OWN any of this music! REDOX/DXRIUS: IG: https://instagram.com/dxrius7 Tiktok: dxriuss7 DC: dxrius7 NOUA UNSPE(9/11): IG: https://instagram.com/nouaunspe Tiktok: nouaunspe Audio Credits: Lyrics: NOUA UNSPE Music: NOUA UNSPE, CST Produced by: CST Lyrics: Se machiază criminal, o pun pe piedestal Regina face ce vrea ea că are bani Se mișcă wow, ăștia mă jur că îi sunt fani Ea nu stă după fraieri că și-o arde cu golani Se machiază criminal, o pun pe piedestal Regina face ce vrea ea că are bani Se mișcă wow, ăștia mă jur că îi sunt fani Ea nu stă după fraieri că și-o arde cu golani Fute banii, cum se mișcă mami, face belly dance Sare clubu', sare tot din portofel În ton cu moda, ea dă ultimu' trend Te face pe degete atunci când nu еști atent All...

      published: 16 May 2024
    • Regina - Otile Brown x Jux (official Video) Sms Skiza 7301508 to 811

      #OtileBrown #Regina #Ngomma Regina ft Jux is the 5th official video off of the DebutAlbum JUST IN LOVE by Otile Brown. Stream the audio exclusively on boomplay app Audio Produced by Ihaji Made It Video Directed by Hanscana For any Bussiness inquiries my team can be contacted through +254799764477

      published: 09 Nov 2020
    • DESCARGUÉ LA APLICACIÓN ROB4 NIÑOS😱 Y ME MANDÓ UNA DIRECCIÓN| Regina MH

      SÍGANME EN MIS REDES SOCIALES👇 INSTAGRAM: Regina_mh_ FACEBOOK: Regina MH TIK TOK: Regina_mh1 NO SE OLVIDEN DE DEJAR SU LIKE👍🏼 SUSCRIBIRSE🫶🏼 Y ACTIVAR LA CAMPANITA DE NOTIFICACIONES🔔PARA NO PERDERTE NINGÚN VIDEO❤️ LINK PARA UNIRTE A LA MEMBRESÍA👇 Únete a este canal https://www.youtube.com/channel/UCP4_-5VpRuiqZuljRwTA4sA/join CORREO DE NEGOCIOS📧 reginamh.contact@gmail.com

      published: 13 Aug 2024
    • Casa a venda com 2 lotes e piscina em Peruíbe - Regina Guerreiro Imóveis

      🏡Está disponível para venda uma casa com 2 lotes e piscina, localizado no bairro Estância São José. Distância de 290m da praia. Com uma área total de 500m², sendo 249m² de área construída, este imóvel oferece todo o conforto e espaço que você procura. Com 4 quartos, todos suítes, além de um lavado, a propriedade também conta com uma espaçosa sala de estar para três ambientes e um aconchegante mezanino. Perfeitos para acomodar toda a família. Com relação à cozinha, experimente o verdadeiro conceito de integração e conforto. Projetada para se fundir perfeitamente com a área gourmet coberta, este espaço inovador combina funcionalidade e estilo, oferecendo o ambiente ideal para cozinhar, receber amigos e desfrutar de momentos especiais com a família. Área de lazer com um espaçoso quintal, corr...

      published: 14 Aug 2024
    • Andrada Cerna - REGINA CLUB MIX 💥 2024

      Andrada Cerna - REGINA CLUB MIX by DJ Silviu BSM Subscribe la @andradacernaoficial - https://www.youtube.com/@andradacernaoficial Ascultă Aici: https://bfan.link/regina-3 📞Tel - 0727 192 490 💌Email: andradacerna62@gmail.com 🎙️ Voce: Andrada Cerna 📝 Versuri: Andrada Cerna 🎵 Linie Melodică: Andrada Cerna 📀 Studio: Paul Morar 🎵 REMIX DJ Silviu BSM Andrada Cerna ONLINE: 👍Facebook: https://www.facebook.com/AndradaCernaOficial 📸Instagram: https://www.instagram.com/andrada.cerna ❣ TikTok: https://www.tiktok.com/@andradacerna 🎼Apple Music: https://music.apple.com/us/artist/andrada-cerna/1435692061 🎵Spotify: https://open.spotify.com/artist/5LYZ4n4nckOzUE3jQV3YQg?si=OLFLhmo-RK-Di9vAQLD8ow © ℗ ----------- © ℗ PRODUCĂTOR: Andrada Cerna Distribuitor / Publisher: DIRECT Music Romania ⛔ Toate...

      published: 06 Aug 2024
    developed with YouTube
    Regina Is Working With The STALKER!
    17:59

    Regina Is Working With The STALKER!

    • Order:
    • Duration: 17:59
    • Uploaded Date: 14 Aug 2024
    • views: 279728
    Daniela is suspicious of her best friend, Regina. She goes in disguise to see if her theories that Regina is working with the stalker is true. Turns out, Regina IS working with the stalker!! Follow us :-) TikTok Regina & Daniela ⇢ https://www.tiktok.com/@reginandaniela_ Regina ⇢ https://www.tiktok.com/@reginamochii Daniela ⇢ https://www.tiktok.com/@danielaagui1ar Instagram Regina & Daniela ⇢ https://instagram.com/reginandaniela Regina ⇢ https://instagram.com/reginamochii Daniela ⇢ https://www.instagram.com/danielaagui1ar ⇢ business email: ronit@cohntalent.com
    https://wn.com/Regina_Is_Working_With_The_Stalker
    NOUA UNSPE - REGINA (Official Music Video)
    2:23

    NOUA UNSPE - REGINA (Official Music Video)

    • Order:
    • Duration: 2:23
    • Uploaded Date: 12 Apr 2024
    • views: 663665
    Stream & Download "REGINA": https://nouaunspe.bfan.link/regina NOUA UNSPE: Instagram: https://instagram.com/nouaunspe TikTok: https://www.tiktok.com/@nouaunspe Spotify: https://open.spotify.com/artist/1fYKCWegShlSGe4yATnpdp Apple Music: https://music.apple.com/ro/artist/noua-unspe/1508310963 Audio Credits: Lyrics: NOUA UNSPE Music: NOUA UNSPE, CST Produced by: CST Video Credits: Directed by Quba DOP : Codruta Corocea 1st AD : Moza Kaliza Edit & Color: Quba Production : Loops (C) 2024 Global Records & Seek Music (P) 2024 Global Records Toate drepturile sunt rezervate. Orice upload neautorizat al acestui videoclip este ilegal si poate fi raportat oricand la Youtube. All rights reserved. Unauthorized reproduction is a violation of applicable laws. In order to avoid copyright infringement, please do not upload this video on your channel. #NOUAUNSPE #REGINA
    https://wn.com/Noua_Unspe_Regina_(Official_Music_Video)
    SUBBITO - CARA & REGINA (OFFICIAL VIDEO)
    3:15

    SUBBITO - CARA & REGINA (OFFICIAL VIDEO)

    • Order:
    • Duration: 3:15
    • Uploaded Date: 12 Jul 2024
    • views: 1366184
    Rec, Mix e master: Icy Entertainment Hairstyle: Ladydewig Video a cura di Kunai Studio Thanks to: Ada Music e Gianfranco Bortolotti Music by: BigDeal Records Instagram: https://www.instagram.com/bigdealrec/ For license, cover or remix: bigdealrec@gmail.com
    https://wn.com/Subbito_Cara_Regina_(Official_Video)
    SHE HAS A SECRET ROOM! What Is My BFF HIDING?!
    18:41

    SHE HAS A SECRET ROOM! What Is My BFF HIDING?!

    • Order:
    • Duration: 18:41
    • Uploaded Date: 11 Aug 2024
    • views: 478728
    Regina has ANOTHER secret room! Since this isn't her first time hiding a secret like this, Daniela, Daniel, Melvin and Dane try to unlock the secrets hidden within the room. Follow us :-) TikTok Regina & Daniela ⇢ https://www.tiktok.com/@reginandaniela_ Regina ⇢ https://www.tiktok.com/@reginamochii Daniela ⇢ https://www.tiktok.com/@danielaagui1ar Instagram Regina & Daniela ⇢ https://instagram.com/reginandaniela Regina ⇢ https://instagram.com/reginamochii Daniela ⇢ https://www.instagram.com/danielaagui1ar ⇢ business email: ronit@cohntalent.com
    https://wn.com/She_Has_A_Secret_Room_What_Is_My_Bff_Hiding
    我也遇到詐騙了!為了買精品包被騙了20萬😭|報警、開庭訴訟流程與結果
    32:54

    我也遇到詐騙了!為了買精品包被騙了20萬😭|報警、開庭訴訟流程與結果

    • Order:
    • Duration: 32:54
    • Uploaded Date: 08 Aug 2024
    • views: 121707
    +訂閱我的Youtube頻道 https://goo.gl/P94QPa ❚ Social Media;社群平台 Instagram @thereginatw https://instagram.com/thereginatw Facebook https://www.facebook.com/thereginatw/ Blog http://theregina.com/ ❚ Contact by Mail;合作請Mail thereginatw@gmail.com ❚ items in Video;影片資訊 2021遇到詐騙的經歷 全案經過兩年才算有個結論 比我慘烈的人一定更多,希望大家對於金錢都能更加謹慎警戒 關於投資、網購都務必要小心查證 ❚ About My Look;影片行頭 Eyelash Extensions|睫毛: Deerlash Hair Color|髮色: Zin Hair Styling Winnie ❚ This video is not sponsored.;非合作影片
    https://wn.com/我也遇到詐騙了!為了買精品包被騙了20萬😭|報警、開庭訴訟流程與結果
    Noua Unspe - Regina (Official Visual)
    2:19

    Noua Unspe - Regina (Official Visual)

    • Order:
    • Duration: 2:19
    • Uploaded Date: 16 May 2024
    • views: 737706
    All rights goes to ​⁠@NouaUnspe I do not OWN any of this music! REDOX/DXRIUS: IG: https://instagram.com/dxrius7 Tiktok: dxriuss7 DC: dxrius7 NOUA UNSPE(9/11): IG: https://instagram.com/nouaunspe Tiktok: nouaunspe Audio Credits: Lyrics: NOUA UNSPE Music: NOUA UNSPE, CST Produced by: CST Lyrics: Se machiază criminal, o pun pe piedestal Regina face ce vrea ea că are bani Se mișcă wow, ăștia mă jur că îi sunt fani Ea nu stă după fraieri că și-o arde cu golani Se machiază criminal, o pun pe piedestal Regina face ce vrea ea că are bani Se mișcă wow, ăștia mă jur că îi sunt fani Ea nu stă după fraieri că și-o arde cu golani Fute banii, cum se mișcă mami, face belly dance Sare clubu', sare tot din portofel În ton cu moda, ea dă ultimu' trend Te face pe degete atunci când nu еști atent Allah, Allah, insh'allah, uuu Allah, Allah, insh'allah Se machiază criminal, o pun pe piеdestal Regina face ce vrea ea că are bani Se mișcă wow, ăștia mă jur că îi sunt fani Ea nu stă după fraieri că și-o arde cu golani Se machiază criminal, o pun pe piedestal Regina face ce vrea ea că are bani Se mișcă wow, ăștia mă jur că îi sunt fani Ea nu stă după fraieri că și-o arde cu golani Și noaptea e doamnă Se-mbracă senzual Pietre pe coroană Regina, regina Ayy, coboară din Benz, ole Ce femeie, zici că-i Coco Chanel Adună fraieri să își facă harem Are talent, cu regina e greu Allah, Allah, insh'allah, uuu Allah, Allah, insh'allah Se machiază criminal, o pun pe piedestal Regina face ce vrea ea că are bani Se mișcă wow, ăștia mă jur că îi sunt fani Ea nu stă după fraieri că și-o arde cu golani Se machiază criminal, o pun pe piedestal Regina face ce vrea ea că are bani Se mișcă wow, ăștia mă jur că îi sunt fani Ea nu stă după fraieri că și-o arde cu golani
    https://wn.com/Noua_Unspe_Regina_(Official_Visual)
    Regina - Otile Brown x Jux  (official Video) Sms Skiza 7301508 to 811
    3:19

    Regina - Otile Brown x Jux (official Video) Sms Skiza 7301508 to 811

    • Order:
    • Duration: 3:19
    • Uploaded Date: 09 Nov 2020
    • views: 21295016
    #OtileBrown #Regina #Ngomma Regina ft Jux is the 5th official video off of the DebutAlbum JUST IN LOVE by Otile Brown. Stream the audio exclusively on boomplay app Audio Produced by Ihaji Made It Video Directed by Hanscana For any Bussiness inquiries my team can be contacted through +254799764477
    https://wn.com/Regina_Otile_Brown_X_Jux_(Official_Video)_Sms_Skiza_7301508_To_811
    DESCARGUÉ LA APLICACIÓN ROB4 NIÑOS😱 Y ME MANDÓ UNA DIRECCIÓN| Regina MH
    18:02

    DESCARGUÉ LA APLICACIÓN ROB4 NIÑOS😱 Y ME MANDÓ UNA DIRECCIÓN| Regina MH

    • Order:
    • Duration: 18:02
    • Uploaded Date: 13 Aug 2024
    • views: 533065
    SÍGANME EN MIS REDES SOCIALES👇 INSTAGRAM: Regina_mh_ FACEBOOK: Regina MH TIK TOK: Regina_mh1 NO SE OLVIDEN DE DEJAR SU LIKE👍🏼 SUSCRIBIRSE🫶🏼 Y ACTIVAR LA CAMPANITA DE NOTIFICACIONES🔔PARA NO PERDERTE NINGÚN VIDEO❤️ LINK PARA UNIRTE A LA MEMBRESÍA👇 Únete a este canal https://www.youtube.com/channel/UCP4_-5VpRuiqZuljRwTA4sA/join CORREO DE NEGOCIOS📧 reginamh.contact@gmail.com
    https://wn.com/Descargué_La_Aplicación_Rob4_Niños😱_Y_Me_Mandó_Una_Dirección|_Regina_Mh
    Casa a venda com 2 lotes e piscina em Peruíbe - Regina Guerreiro Imóveis
    14:18

    Casa a venda com 2 lotes e piscina em Peruíbe - Regina Guerreiro Imóveis

    • Order:
    • Duration: 14:18
    • Uploaded Date: 14 Aug 2024
    • views: 375
    🏡Está disponível para venda uma casa com 2 lotes e piscina, localizado no bairro Estância São José. Distância de 290m da praia. Com uma área total de 500m², sendo 249m² de área construída, este imóvel oferece todo o conforto e espaço que você procura. Com 4 quartos, todos suítes, além de um lavado, a propriedade também conta com uma espaçosa sala de estar para três ambientes e um aconchegante mezanino. Perfeitos para acomodar toda a família. Com relação à cozinha, experimente o verdadeiro conceito de integração e conforto. Projetada para se fundir perfeitamente com a área gourmet coberta, este espaço inovador combina funcionalidade e estilo, oferecendo o ambiente ideal para cozinhar, receber amigos e desfrutar de momentos especiais com a família. Área de lazer com um espaçoso quintal, corredor de ambos os lados do imóvel e uma piscina totalmente convidativa, perfeitos para momentos de descontração e diversão. Conta com uma área de serviço estrategicamente localizada, além de um espaço completo para funcionários, com quarto, cozinha e banheiro. Além disso, há espaço para estacionar até 5 veículos. A localização também é privilegiada, estando a apenas 290 metros da praia. Não perca a oportunidade de adquirir este incrível imóvel e desfrutar de momentos inesquecíveis em Peruíbe. Entre em contato conosco para mais informações e agendamentos de visitas. Ref. Imóvel: CA1546 Valor: R$ 900.000 IPTU: R$ 462/mês 🏡249 m² - Área construída 🏡500 m² - Área do terreno Telefone para contato: (13) 99730-5857 - WhatsApp (13) 3455-7030 - Comercial . . . . . . #peruibe #litoralsul #reginaguerreiroimoveis #casaavenda
    https://wn.com/Casa_A_Venda_Com_2_Lotes_E_Piscina_Em_Peruíbe_Regina_Guerreiro_Imóveis
    Andrada Cerna - REGINA CLUB MIX 💥 2024
    2:27

    Andrada Cerna - REGINA CLUB MIX 💥 2024

    • Order:
    • Duration: 2:27
    • Uploaded Date: 06 Aug 2024
    • views: 11202
    Andrada Cerna - REGINA CLUB MIX by DJ Silviu BSM Subscribe la @andradacernaoficial - https://www.youtube.com/@andradacernaoficial Ascultă Aici: https://bfan.link/regina-3 📞Tel - 0727 192 490 💌Email: andradacerna62@gmail.com 🎙️ Voce: Andrada Cerna 📝 Versuri: Andrada Cerna 🎵 Linie Melodică: Andrada Cerna 📀 Studio: Paul Morar 🎵 REMIX DJ Silviu BSM Andrada Cerna ONLINE: 👍Facebook: https://www.facebook.com/AndradaCernaOficial 📸Instagram: https://www.instagram.com/andrada.cerna ❣ TikTok: https://www.tiktok.com/@andradacerna 🎼Apple Music: https://music.apple.com/us/artist/andrada-cerna/1435692061 🎵Spotify: https://open.spotify.com/artist/5LYZ4n4nckOzUE3jQV3YQg?si=OLFLhmo-RK-Di9vAQLD8ow © ℗ ----------- © ℗ PRODUCĂTOR: Andrada Cerna Distribuitor / Publisher: DIRECT Music Romania ⛔ Toate drepturile sunt rezervate. Orice upload neautorizat al acestui videoclip este ilegal si poate fi raportat oricând la Youtube. ⛔ All rights reserved. Unauthorized reproduction is a violation of applicable laws. In order to avoid copyright infringement, please do not upload this video on your channel. Just LIKE and SHARE !! Abonaţi-vă gratuit la canal pentru a primi noutăţi muzicale !! Click pe clopoţel și activati "Toate" notificările pentru a vedea cele mai noi videoclipuri !!! Video made in: https://vizzy.io Versuri: Hai dansează , regină Tu ești cea mai frumoasă Hai dansează , regină Lumea te aplaudă Tu frumoaso când apari N-ai cu ce sa te compari Ești centrul atenției Sufletul distracției Se cânta doar pentru tine Dansează simte-te bine Ești ca roua dimineții Ești regina frumuseții Hai dansează , regină Tu ești cea mai frumoasa Hai dansează , regină Lumea te aplaudă Tu ești floarea florilor Regina reginelor Asta este seara ta Pe care n-o vei uita Toți prietenii sa vina Mai aproape de regina Ea sa danseze pe masa Cel mai tare show sa iasă Hai dansează , regină Tu ești cea mai frumoasa Hai dansează , regină Lumea te aplaudă #AndradaCerna #Regina #ClubMix #OficialVideo
    https://wn.com/Andrada_Cerna_Regina_Club_Mix_💥_2024
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Charlemagne: How He Changed History Forever
      8:42
      Charlemagne: How He Changed History Foreverremove from playlist
    • Charlemagne - Father of the Holy Roman Empire Documentary
      1:00:56
      Charlemagne - Father of the Holy Roman Empire Documentaryremove from playlist
    • Ten Minute History - Charlemagne and the Carolingian Empire (Short Documentary)
      10:00
      Ten Minute History - Charlemagne and the Carolingian Empire (Short Documentary)remove from playlist
    • Blossoms - Charlemagne
      2:52
      Blossoms - Charlemagneremove from playlist
    • Charlemagne: Father of Medieval Europe - DOCUMENTARY
      1:08:19
      Charlemagne: Father of Medieval Europe - DOCUMENTARYremove from playlist
    • Charlemagne: The Father of Europe
      21:53
      Charlemagne: The Father of Europeremove from playlist
    • Who was Charlemagne?
      29:10
      Who was Charlemagne?remove from playlist
    • Charlemagne For Kids
      5:12
      Charlemagne For Kidsremove from playlist
    • Charlemagne | Emperor of the Carolingian Empire
      0:53
      Charlemagne | Emperor of the Carolingian Empireremove from playlist
    • Charlemagne (Part 1/2) 📜 The Rise
      16:49
      Charlemagne (Part 1/2) 📜 The Riseremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Charlemagne: How He Changed History Forever

    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 Charlemagne here: https://www.audible.com/pd/B08GKS1QWG/?source_code=AUDFPWS0223189MWT-BK-ACX0-213462&ref=acx_bty_BK_ACX0_213462_rh_us You can get the paperback version of Charlemagne here: https://www.amazon.com/Charlemagne-Captivating-Greatest-Carolingian-Lombards/dp/1647488354 And the ebook version of Charlemagne here: https://www.amazon.com/Charlemagne-Captivating-Greatest-Carolingian-Lombards-ebook/dp/B08CSSXYTY Warrior. Ruler. Patron of the arts and language. Terrorist. Brutal oppressor. Protector of the good. Guardian of Christendom. Father of Europe. There are so many different ways in which Charlemagne can be described, and yet the man himself is often seen as an enigma. Depending on the viewpoint of history, he could have been either a monster or a guardian angel. Yet, as with most men, the truth lies somewhere in between. The truth is that he was human. See all captivating history books here: https://www.amazon.com/author/captivatinghistory Follow us on Facebook: https://www.facebook.com/captivatinghistory Follow us on Twitter: @CaptivHistory
    8:42
    Charlemagne: How He Changed History Forever
    Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundl...
    published: 27 Jul 2021
    Play in Full Screen
    1:00:56
    Charlemagne - Father of the Holy Roman Empire Documentary
    For early access to our videos, discounted merch and many other exclusive perks please sup...
    published: 04 Jan 2023
    Play in Full Screen
    10:00
    Ten Minute History - Charlemagne and the Carolingian Empire (Short Documentary)
    Twitter: https://twitter.com/Tenminhistory Patreon: https://www.patreon.com/user?u=4973164...
    published: 04 Aug 2018
    Play in Full Screen
    2:52
    Blossoms - Charlemagne
    Charlemagne. Get it on iTunes: http://po.st/BlChariT Listen on Spotify: http://po.st/BlCha...
    published: 29 Jun 2016
    Play in Full Screen
    1:08:19
    Charlemagne: Father of Medieval Europe - DOCUMENTARY
    Charlemagne was king of the Franks, and emperor of western Christendom. Out of the turmoil...
    published: 26 Mar 2022
    Play in Full Screen
    21:53
    Charlemagne: The Father of Europe
    Try out Skillshare for FREE: https://skl.sh/biographics3 → Subscribe for new videos four ...
    published: 05 Sep 2019
    Play in Full Screen
    29:10
    Who was Charlemagne?
    Charlesmagne was one of the great kinds of medieval Europe. He was coronated by the pope i...
    published: 28 May 2014
    Play in Full Screen
    5:12
    Charlemagne For Kids
    Learn about Charlemagne or Charles the Great, the powerful king who conquered much of Euro...
    published: 02 Apr 2019
    Play in Full Screen
    0:53
    Charlemagne | Emperor of the Carolingian Empire
    Charlemagne, also known as Charles the Great, (2 April 742 - 28 January 814), united the m...
    published: 07 Nov 2024
    Play in Full Screen
    16:49
    Charlemagne (Part 1/2) 📜 The Rise
    🚩 The first 1,000 people to use this link will get a 1 month free trial of Skillshare: htt...
    published: 07 Aug 2021
    Play in Full Screen

    Charlemagne

    Charlemagne (/ˈʃɑːrlmn/; 2 April 742/747/748  28 January 814), also known as Charles the Great (Latin: Carolus or Karolus Magnus) or Charles I, was King of the Franks. He united most of Western Europe during the early Middle Ages and laid the foundations for modern France and Germany. He took the Frankish throne in 768 and became King of Italy from 774. From 800 he became the first Holy Roman Emperor — the first recognized emperor in Western Europe since the fall of the Western Roman Empire three centuries earlier. While Charlemagne already ruled his kingdom without the help of the Pope, recognition from the pontiff granted him divine legitimacy in the eyes of his contemporaries.

    The expanded Frankish state Charlemagne founded was called the Carolingian Empire.

    The oldest son of Pepin the Short and Bertrada of Laon, Charlemagne became king in 768 following the death of his father. He was initially co-ruler with his brother Carloman I. Carloman's sudden death in 771 under unexplained circumstances left Charlemagne as the undisputed ruler of the Frankish Kingdom. Charlemagne continued his father's policy towards the papacy and became its protector, removing the Lombards from power in northern Italy, and leading an incursion into Muslim Spain. He also campaigned against the Saxons to his east, Christianizing them upon penalty of death, leading to events such as the Massacre of Verden. Charlemagne reached the height of his power in 800 when he was crowned Emperor of the Romans by Pope Leo III on Christmas Day at Old St. Peter's Basilica.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Regina Is Working With The STALKER!
      17:59
      Regina Is Working With The STALKER!remove from playlist
    • NOUA UNSPE - REGINA (Official Music Video)
      2:23
      NOUA UNSPE - REGINA (Official Music Video)remove from playlist
    • SUBBITO - CARA & REGINA (OFFICIAL VIDEO)
      3:15
      SUBBITO - CARA & REGINA (OFFICIAL VIDEO)remove from playlist
    • SHE HAS A SECRET ROOM! What Is My BFF HIDING?!
      18:41
      SHE HAS A SECRET ROOM! What Is My BFF HIDING?!remove from playlist
    • 我也遇到詐騙了!為了買精品包被騙了20萬😭|報警、開庭訴訟流程與結果
      32:54
      我也遇到詐騙了!為了買精品包被騙了20萬😭|報警、開庭訴訟流程與結果remove from playlist
    • Noua Unspe - Regina (Official Visual)
      2:19
      Noua Unspe - Regina (Official Visual)remove from playlist
    • Regina - Otile Brown x Jux  (official Video) Sms Skiza 7301508 to 811
      3:19
      Regina - Otile Brown x Jux (official Video) Sms Skiza 7301508 to 811remove from playlist
    • DESCARGUÉ LA APLICACIÓN ROB4 NIÑOS😱 Y ME MANDÓ UNA DIRECCIÓN| Regina MH
      18:02
      DESCARGUÉ LA APLICACIÓN ROB4 NIÑOS😱 Y ME MANDÓ UNA DIRECCIÓN| Regina MHremove from playlist
    • Casa a venda com 2 lotes e piscina em Peruíbe - Regina Guerreiro Imóveis
      14:18
      Casa a venda com 2 lotes e piscina em Peruíbe - Regina Guerreiro Imóveisremove from playlist
    • Andrada Cerna - REGINA CLUB MIX 💥 2024
      2:27
      Andrada Cerna - REGINA CLUB MIX 💥 2024remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Regina Is Working With The STALKER!

    Daniela is suspicious of her best friend, Regina. She goes in disguise to see if her theories that Regina is working with the stalker is true. Turns out, Regina IS working with the stalker!! Follow us :-) TikTok Regina & Daniela ⇢ https://www.tiktok.com/@reginandaniela_ Regina ⇢ https://www.tiktok.com/@reginamochii Daniela ⇢ https://www.tiktok.com/@danielaagui1ar Instagram Regina & Daniela ⇢ https://instagram.com/reginandaniela Regina ⇢ https://instagram.com/reginamochii Daniela ⇢ https://www.instagram.com/danielaagui1ar ⇢ business email: ronit@cohntalent.com
    17:59
    Regina Is Working With The STALKER!
    Daniela is suspicious of her best friend, Regina. She goes in disguise to see if her theor...
    published: 14 Aug 2024
    Play in Full Screen
    2:23
    NOUA UNSPE - REGINA (Official Music Video)
    Stream & Download "REGINA": https://nouaunspe.bfan.link/regina NOUA UNSPE: Instagram: htt...
    published: 12 Apr 2024
    Play in Full Screen
    3:15
    SUBBITO - CARA & REGINA (OFFICIAL VIDEO)
    Rec, Mix e master: Icy Entertainment Hairstyle: Ladydewig Video a cura di Kunai Studio Th...
    published: 12 Jul 2024
    Play in Full Screen
    18:41
    SHE HAS A SECRET ROOM! What Is My BFF HIDING?!
    Regina has ANOTHER secret room! Since this isn't her first time hiding a secret like this,...
    published: 11 Aug 2024
    Play in Full Screen
    32:54
    我也遇到詐騙了!為了買精品包被騙了20萬😭|報警、開庭訴訟流程與結果
    +訂閱我的Youtube頻道 https://goo.gl/P94QPa ❚ Social Media;社群平台 Instagram @thereginatw https://i...
    published: 08 Aug 2024
    Play in Full Screen
    2:19
    Noua Unspe - Regina (Official Visual)
    All rights goes to ​⁠@NouaUnspe I do not OWN any of this music! REDOX/DXRIUS: IG: https...
    published: 16 May 2024
    Play in Full Screen
    3:19
    Regina - Otile Brown x Jux (official Video) Sms Skiza 7301508 to 811
    #OtileBrown #Regina #Ngomma Regina ft Jux is the 5th official video off of the DebutAlbum ...
    published: 09 Nov 2020
    Play in Full Screen
    18:02
    DESCARGUÉ LA APLICACIÓN ROB4 NIÑOS😱 Y ME MANDÓ UNA DIRECCIÓN| Regina MH
    SÍGANME EN MIS REDES SOCIALES👇 INSTAGRAM: Regina_mh_ FACEBOOK: Regina MH TIK TOK: Regin...
    published: 13 Aug 2024
    Play in Full Screen
    14:18
    Casa a venda com 2 lotes e piscina em Peruíbe - Regina Guerreiro Imóveis
    🏡Está disponível para venda uma casa com 2 lotes e piscina, localizado no bairro Estância ...
    published: 14 Aug 2024
    Play in Full Screen
    2:27
    Andrada Cerna - REGINA CLUB MIX 💥 2024
    Andrada Cerna - REGINA CLUB MIX by DJ Silviu BSM Subscribe la @andradacernaoficial - ht...
    published: 06 Aug 2024
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: regina (concubine)

    Edit

    Legion: Life in the Roman Army exhibition delivers exciting finds but fails to go beyond ...

    The Conversation 23 Feb 2024
    Enslavement is alluded to in personal stories, including that of Abbas, a boy whose purchase by a legionary is attested on a papyrus and the story of an enslaved concubine, turned freed woman and wife, Regina.
    • 1

    Most Viewed

    ×