- published: 16 Jul 2023
- views: 576367
'+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; })); }); -->
Violant of Hungary (c. 1215–1251) was a Queen consort of Aragon and the second wife of King James I of Aragon. She is also called Jolánta in Hungarian, Iolanda or Violant d'Hongria in Catalan and Yolanda or Violante de Hungría in Spanish.
Violant was born at Esztergom circa 1215, the only child of King Andrew II of Hungary and his second wife Yolanda of Courtenay.
Violant married James in 1235. James had already been married to Eleanor of Castile, but he had this marriage annulled on the basis of consanguinity in 1229. He and Eleanor had a son named Alfonso, who was considered legitimate, but who died prior to his father.
James and Violant had ten children:
Coordinates: 47°N 20°E / 47°N 20°E / 47; 20
Hungary (i/ˈhʌŋɡəri/; Hungarian: Magyarország [ˈmɒɟɒrorsaːɡ]) is a landlocked country in Central Europe. It is situated in the Carpathian Basin and is bordered by Slovakia to the north, Romania to the east, Serbia to the south, Croatia to the southwest, Slovenia to the west, Austria to the northwest, and Ukraine to the northeast. The country's capital and largest city is Budapest. Hungary is a member of the European Union, NATO, the OECD, the Visegrád Group, and the Schengen Area. The official language is Hungarian, which is the most widely spoken non-Indo-European language in Europe.
Following centuries of successive habitation by Celts, Romans, Huns, Slavs, Gepids, and Avars, the foundation of Hungary was laid in the late 9th century by the Hungarian grand prince Árpád in the Honfoglalás ("homeland-conquest"). His great-grandson Stephen I ascended to the throne in 1000 CE, converting the country to a Christian kingdom. By the 12th century, Hungary became a middle power within the Western world, reaching a golden age by the 15th century. Following the Battle of Mohács in 1526 and about 150 years of partial Ottoman occupation (1541–1699), Hungary came under Habsburg rule, and later formed a significant part of the Austro–Hungarian Empire (1867–1918).
Hungarian wine has a history dating back to at least Roman times. Outside of Hungary, the best-known wines are the white dessert wine Tokaji and the red wine Bull's Blood of Eger (Egri Bikavér).
Only three European languages have words for wine that are not derived from Latin: Greek, Turkish and Hungarian. Records carved in a Runic alphabet used by ancient Hungarians have words for wine derived from Turkic. There are two hundred Hungarian words (including wine as well) that are of Bulgaro-Turkic origin, suggesting that the Magyars had contact with the first winemakers in the South Caucasus. Examples include :
The Romans brought vines to Pannonia, and by the 5th century AD, there are records of extensive vineyards in Hungary. Following the Magyar invasion of 896, Árpád rewarded his followers with vineyards in Tokaj. Over the following centuries, new grape varieties were brought in from Italy and France. Most of the production was of white wine.
The Kingdom of Hungary (Hungarian: Magyar Királyság), also known as the Regency, existed from 1920 to 1946 as a de facto country under Regent Miklós Horthy. Horthy officially represented the Hungarian monarchy of Charles IV, Apostolic King of Hungary. Attempts by Charles IV to return to the throne were prevented by threats of war from neighbouring countries and by the lack of support from Horthy (see the conflict of Charles IV with Miklós Horthy).
The country has been regarded by some historians to have been a client state of Germany from 1938 to 1944. The Kingdom of Hungary under Horthy was an Axis Power during most of World War II. In 1944, after Horthy's government considered leaving the war, Hungary was occupied by Nazi Germany and Horthy was deposed. The Arrow Cross Party's leader Ferenc Szálasi established a new Nazi-backed government, effectively turning Hungary into a German puppet state.
After World War II, Hungary fell within the Soviet Union's sphere of interest. In 1946, the Second Hungarian Republic was established under Soviet influence. In 1949, the communist Hungarian People's Republic was founded.
Before visiting Budapest it's best to know some things to make sure you have a great time! In this video we share 15 things you must know so that your trip to the Hungary's capital will be the best it could be! Budapest is popular among tourists across the world because of it's nice architecture, the good food and generally great vibe. I myself as a local love the city for the same reasons. However there are things that may be strange for some visitors, or things that if not known could lead to some confusing situations. ************************************************** If you wish to Support the work that we do then consider Joining our Membership! We share behind the scene information and updates to our Special Map of Budapest and the Country! Check it out here, we're grateful for all...
🔥📚 Get our Budapest PDF travel guide for ONLY $6.99 👉 https://gum.co/BdpGD 🔥 By purchasing our travel guide you're also helping us sustain this channel - ❤️ BIG Thank You! In this video, we’ll show you the top 10 things to do in Budapest. Looking for quick and easy access to the attractions we mentioned in the video? You can book them through our TrueSpots page! 👉 https://www.truespots.com/creators/hungry-passport?destination=budapest-hungary CHAPTERS: 0:00 Intro 0:29 10. Hungarian Parliament Building 1:38 9. Thermal baths like Széchenyi Thermal Bath 2:36 8. Széchenyi Chain Bridge 3:20 7. Fisherman's Bastion 4:16 6. Buda Castle 5:07 5. Ruin Pubs like Szimpla Kert 5:49 4. Citadella & Liberty Statue 6:28 3. House of Terror Museum 7:23 2. Central Market Hall 8:16 1. City Park with Heroes...
Top 10 Best Places To Visit In Hungary | Hungary Travel Video #hungary #hungarytravel #budapest Welcome to our video guide on the top 10 best places to visit in Hungary! Hungary is much more than its glittering capital with its stunning lakes, densely forested landscapes, statuesque castles, amazing caves, magnificent churches, and quaint villages. This magnificent central European country evokes a strong sense of culture, history, and tradition at its every turn. It is a landlocked country that spans over the Carpathian Basin and is bordered by Slovakia to the North, Ukraine to the northeast, Serbia to the South, Slovenia and Croatia to the southwest, Romania to the east and southeast, and Austria to the west. Lush valleys, picturesque lakes and spectacular mountains surrounding land...
Wine and Street Food Festival Szabadsàg Tér – Freedom Square 1054, Budapest, Hungary Thanks for kind cooperation to : Panoràma Terasz Vigado Square 3 1051 Budapest, Hungary www.panoramaterasz.com #streetfood #budapeststreetfood #meat #hungarystreetfood #budapest #hungary #langos #goulash #sausages #cheese #hugepans #roastedchichen #foodporn #porkknuckles #roastedporkbelly #pulledpork #churros #pork #porkribs #truck #bbq #pulledporksandwich #smokedpork #streetfoodfestival https://www.youtube.com/channel/UCdNO3SSyxVGqW-xKmIVv9pQ/join www.settime2588.com www.facebook.com/settime2588 instagram: settime2588 www.twitter.com/settime2588
Hungary is one of the most affordable and satisfying tourist destinations on the European Continent. Come along and pack your swimsuit and camera, and enjoy the Hungarian hot springs, the romantic architecture, and the country's best places to visit! Chapters: 00:00 Why visiting Hungary 00:44 Budapest 01:51 Balaton Lake 03:10 Esztergom 04:04 Eger 05:05 Balatonfüred 06:01 Miskolc 06:57 Veszprém 07:39 Lillafüred 08:31 Szentendre 09:12 Siófok 09:59 Reason for visiting Hungary #Hungary #Places #Travel
Libo-libong trabaho ang alok ng bansang Hungary para sa mga Pilipino, ngayong ipinadiriwang ang Philippines-Hungarian Friendship Week. 24 Oras is GMA Network’s flagship newscast, anchored by Mel Tiangco, Vicky Morales and Emil Sumangil. It airs on GMA-7 Mondays to Fridays at 6:30 PM (PHL Time) and on weekends at 5:30 PM. For more videos from 24 Oras, visit http://www.gmanews.tv/24oras. #GMAIntegratedNews #GMANetwork #KapusoStream Breaking news and stories from the Philippines and abroad: GMA Integrated News Portal: http://www.gmanews.tv Facebook: http://www.facebook.com/gmanews TikTok: https://www.tiktok.com/@gmanews Twitter: http://www.twitter.com/gmanews Instagram: http://www.instagram.com/gmanews GMA Network Kapuso programs on GMA Pinoy TV: https://gmapinoytv.com/subscribe
HUNGARY IN 2025: The Things They NEVER Told You... | 53 Insane Facts ☕ Love what we do? Keep us fueled for the next adventure! If you enjoy our videos and want to support the channel, consider buying us a coffee, it helps us create even more amazing content! 👉 https://buymeacoffee.com/europeindetail 🚀🌍 Thank you!! 🔔 Subscribe now with all notifications on for more in-depth European travel guides, hidden gems in Europe, and insightful European culture explorations! #hungary #budapest #hungarian 📺 Watch the entire video for more information! _________________________________________________________________ About Europe In Detail 🎥 Videos about detailed European travel, unexplored European gems, and rich European cultural insights. 🎨 Written, voiced and produced by Europe In Detail 🔔 ...
🎥 Copenhagen Street Food Tour: https://youtu.be/gMNvp-83fDc 👍 100% Real Durian Chips - Order Here: http://pixelfy.me/uY4K5z Welcome to Budapest, Hungary, an amazing city, full of history, beauty, and delicious Hungarian food! Today, I headed with my friend Adam (https://www.adamosvald.com/) to go on an ultimate Hungarian street food tour in Budapest. #Budapest #Hungary #HugarianFood Great Market Hall - It’s one of the coolest markets in the world, a massive indoor market hall. Inside you’ll find all things Hungarian food, from an immense array of sausages and famous Hungarian cured meats to loads of paprika, and Hungarian pickles. We had an amazing time walking around, discovering the ingredients that make Hungarian food unique. Fakanal Etterem - This is a nice restaurant on the secon...
Wonders of Hungary | The Most Amazing Places in Hungary | Travel Video 4K Subscribe to the channel here, it's free but means a lot to us: https://www.youtube.com/channel/UCEtkDdEZ0D8BiYnDRIHqYnQ?sub_confirmation=1 00:00 Welcome to Hungary 03:26 Budapest 05:35 Buda castle 07:49 St. Stephen's Basilica 09:46 Hungarian Parliament Building 11:30 Széchenyi Chain Bridge 13:15 Elizabeth Lookout 13:56 Vajdahunyad Castle 15:38 Heroes' Square 17:22 Fisherman's Bastion 18:40 Széchenyi Thermal Bath 19:30 Szentendre 21:01 Gyor 22:26 Pannonhalma Abbey 23:16 Sopron 24:45 Pecs 26:31 Pecs Cathedral 28:37 Szeged 30:34 Szeged Synagogue 31:31 Eger 33:00 Miskolc 34:53 Keszthely 35:53 Lake Balaton 37:02 Tihany 38:21 Royal Palace of Gödöllő 39:35 Visegrad castle 40:19 Basilica of Esztergom 41:45 Lake Hévíz 43:1...
Welcome to our channel! So happy to have you! In this episode we are trying to demystify the rumors of Hungarian Wine! Enjoy! Like and subscribe to never miss an episode again! 😉 Thank you so much for joining our adventures! Travel Vlog 94 | Budapest | Filmed July 2022 https://tastehungary.com —————— Check out our Instagram for latest news and updates: @maddyandsascha https://www.instagram.com/maddyandsascha 📨 Sign up for our email newsletter: https://maddyandsascha.com —————— 🎶 Music in this episode: Nothing Like Wine (Instrumental Version) - Velee Be Free With Me (Instrumental Version) - Siine 🎼 Get all the royalty free music that we use: Epidemic Sound https://bit.ly/3El9QER 🎥Our current vlogging gear: https://kit.co/MaddyandSascha/vlogging-gear 🏝Our current travel gear: http...
If you are into wine, you've probably heard about Bikavér wine from Hungary. But, what is it really? Here are all the answers! Follow me on Instagram: @setigiraldo Check my other videos about Hungarian wine!
Tokaji wine has a long tradition and is one of the most expensive wines in the world. In their works, historical greats such as Goethe, Schiller and Beethoven immortalized this special wine. Back in the day French King Louis XIV even called it, the “king of wines.” But surprisingly, it doesn't come from one of the world's famous wine countries like Italy, France, or Spain, but from the Tokaji wine-growing region in northern Hungary. There, different methods are used to make the wine with different degrees of sweetness and quality levels from moldy white wine grapes. The Tokaji Aszú and Tokaji Eszencia varieties have been appreciated by wine connoisseurs for centuries as precious fine wines and classics of the wine world. Report: Hendrik Welling Camera: Josef Havasi Edit: Khalil Fadel /...
Exotic Wine Travel visit Taste Hungary's Tasting Table Budapest. In this episode, we taste three volcanic wines: one from Tokaj and two from Egér. We're joined by Tasting Table's head sommelier, Sebastian Giraldo. Discover Hungarian wines and Hungarian wine regions with us! Tasting Table's Taste Hungary Wine Club offers small-batch wines from family producers. With each shipment, they'll guide you through the history, geology, regional characteristics, grape varieties, styles, and the stories of Hungarian wine. This wine club delivers to all of EU and USA. 💥 https://share.exoticwinetravel.com/tastehungarywineclub 👈 Use the code EXOTICWINETRAVELS for $15 off on your first shipment when you join the wine club. 💥 https://share.exoticwinetravel.com/tastehungarytour 👈 Taste Hungary also of...
Tokaji wines are legendary and utterly delicious but can be intimidating and confusing to wine lovers who are new to the region. Want to pronounce the word "Tokaj" or "Tokaji" and all the squiggly words on a Tokaji wine label? In this video, we break down the types of wines you can find in Tokaj, Hungary. You can also learn keywords that are useful for comprehending Tokaji wine labels, such as hárslevelú, sárga muskotály, zeta, köverszolu, kabar, hordó, dűlő, szamorodni, szaraz, edés, aszú, eszencia, forditás, and máslás. That means you can speak a bit of Hungarian language after watching this video! Discover Hungarian wines and Hungarian wine regions with us! ✍ Check out our articles about Tokaj: - https://exoticwinetravel.com/hungarian-wine-the-legendary-tokaj-region/ - https://exotic...
Gábor and Jon tasting 3 types of wine from Nádas Borműhely!
Weekend Wine: Hungarian Tokaji
There are plenty of exciting Hungarian white wine grapes to discover. In this video, I talk about the common white wine grapes of Hungary and what they can offer to you. Hungarian wine is very exciting. Learn more about it in this video. Hungarian wines and wineries featured in this episode: Laposa, 4 Hegy Olaszrizling Laposa, Kéknyelü Kovács Nimrod, Nagy-Eged Grand Cru Furmint Pajzos, Hárslevelü Selection Font, Generosa Csetvei, Ezerjo Amphora Bott, Csondos Tornai, Szürkebarát Selection Kikelet, Hárslevelü Frittman, Irsai Olivér Gál, Czerszegi Füszeres Sauska, Furmint Sandor Zsolt, Cserszegi Vylyan, Duennium Szepsy, Furmint Höldvölgy ▬▬▬ ✍ Related Article: https://exoticwinetravel.com/hungarian-wine/ ▬▬▬ 👋 Join the Exotic Wine Travel community on Patreon: https://www.patreon.com/exo...
Exotic Wine Travel explores Hungarian wine in Tokaj, Hungary. As one of the oldest appellations in the world, today, Tokaj is recognized as a UNESCO World Heritage Cultural Historical Landscape. The sweet wines of Tokaj are often referred to as "liquid gold", and they have been coveted by royalty for centuries. If you like Sauternes, the wines of Tokaj should absolutely be on your to-drink list. In this video, you can check out some of the best Tokaji wine producers. Watch this video and join us on a visual wine tour in the Tokaj wine region! 💥 In March 2020, we're launching a Kickstarter campaign for our fourth wine book, entitled "Discover Hungarian Wine: A Visitor-Friendly Guide". https://exoticwinetravel.com/discover-hungarian-wine-guide/ 👈 Sign up for our mailing list to find out how...
After a trip to the Eger wine region in Hungary, in this episode, Exotic Wine Travel talks about the Hungarian wines from Eger, including Bikavér aka Bull's Blood wine. Do you know the story behind Bull's Blood? Have you heard of Nagy-Eged-Hegy, the prime vineyard site in Eger? Would you like to find out some of the best producers of Egri Bikavér? Yes, yes, yes? Okay, watch this video then. 🤗 ✍ Related Article: "Hungarian Wine From Eger: Bull’s Blood and Beyond" https://exoticwinetravel.com/hungarian-wine-eger-bulls-blood/ 💥 In March 2020, we're launching a Kickstarter campaign for our fourth wine book, entitled "Discover Hungarian Wine: A Visitor-Friendly Guide". https://exoticwinetravel.com/discover-hungarian-wine-guide/ 👈 Sign up for our mailing list to find out how you can get a spec...
Barta Winery has a significant owenership of the Old King's Vineyard (Öreg Kiraly Dülo) in the village of Mad, in Tokaj, Hungary. Discover Hungarian wine regions and Tokaji wines with us! Tasting Notes: https://exoticwinetravel.com/barta-oreg-kiraly-dulo-mad-6-puttonyos-2008-2010/ Wines featured in this episode: Barta, Öreg Kiraly Dülo Mád Furmint 2011 Barta, Öreg Kiraly Dülo Mád 4 Puttonyos 2008 Barta, Öreg Kiraly Dülo Mád 6 Puttonyos 2013 Barta, Öreg Kiraly Dülo Mád 6 Puttonyos Aszú Válogatás 2013 Barta, Öreg Kiraly Dülo Mád 6 Puttonyos 2010 Barta, Öreg Kiraly Dülo Mád 6 Puttonyos 2008 💥 In March 2020, we're launching a Kickstarter campaign for our fourth wine book, entitled "Discover Hungarian Wine: A Visitor-Friendly Guide". https://exoticwinetravel.com/discover-hungarian-wine-guid...
Furmint is one of the star Hungarian wine grape varieties, especially in Tokaj. The other, lesser-known grape is Harslevelu. It's not as renowned as Furmint but it special in its own right. Learn more in this video. Wines featured in this episode: Château Pajzos, Hárslevelű 2018 Fekete Pince, Hárslevelű 2013 Château Pajzos, Hárslevelű Late Harvest 2017 🎉 Get your Coravin system: https://amzn.to/2PCn4Zd #whitewine #harslevelu #hungary ▬▬▬ 👋 Join the Exotic Wine Travel community on Patreon: https://www.patreon.com/exoticwinetravel ▬▬▬ ✌SUBSCRIBE FOR MORE WINE VIDEOS https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 📽YOUTUBE TOOLS I USE: TubeBuddy: https://www.tubebuddy.com/exoticwinetravel ▬▬▬ 📸 OUR ESSENTIAL EQUIPMENT Canon G7X Mark II: http://amzn.to/2hWSB3S Zoom H4N...
Villány is one of the premier red wine regions in Hungary. It was the first region to chase quality after the fall of communism in Hungary. In the Villány wine region, you will find local grapes like Portugieser, Kadarka, and Kékfrankos, but the focus is on Cabernet Sauvignon, Merlot, and Cabernet Franc. Cabernet Franc is the most important variety of the region and the top examples are labeled Villányi Franc. Learn more about Villány in this video. "Discover Hungarian Wine" is a project we've been working on since 2017. It's the fourth wine book in the Exotic Wine Travel series, and we're working hard to make it the best one yet. 💥 In March 2020, we're relaunching our Kickstarter campaign for our fourth wine book, entitled "Discover Hungarian Wine: A Visitor-Friendly Guide". https://ex...
Violant of Hungary (c. 1215–1251) was a Queen consort of Aragon and the second wife of King James I of Aragon. She is also called Jolánta in Hungarian, Iolanda or Violant d'Hongria in Catalan and Yolanda or Violante de Hungría in Spanish.
Violant was born at Esztergom circa 1215, the only child of King Andrew II of Hungary and his second wife Yolanda of Courtenay.
Violant married James in 1235. James had already been married to Eleanor of Castile, but he had this marriage annulled on the basis of consanguinity in 1229. He and Eleanor had a son named Alfonso, who was considered legitimate, but who died prior to his father.
James and Violant had ten children: