- published: 01 Mar 2023
- views: 950323
'+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; })); }); -->
Quebec (i/kwᵻˈbɛk/ or /kəˈbɛk/; French: Québec [kebɛk]) is the second-most populous province in Canada. It is the only Canadian province that has a predominantly French-speaking population, and the only one to have French as its sole provincial official language.
Quebec is Canada's largest province by area and its second-largest administrative division; only the territory of Nunavut is larger. It is bordered to the west by the province of Ontario, James Bay, and Hudson Bay; to the north by Hudson Strait and Ungava Bay; to the east by the Gulf of Saint Lawrence and the province of Newfoundland and Labrador; it is bordered on the south by the province of New Brunswick and the U.S. states of Maine, New Hampshire, Vermont, and New York. It also shares maritime borders with Nunavut, Prince Edward Island, and Nova Scotia.
Quebec is Canada's second most populous province, after Ontario. Most inhabitants live in urban areas near the Saint Lawrence River between Montreal and Quebec City, the capital. Approximately half of Quebec residents live in the Greater Montreal Area, including the Island of Montreal. English-speaking communities and English-language institutions are concentrated in the west of the island of Montreal but are also significantly present in the Outaouais, Eastern Townships, and Gaspé regions. The Nord-du-Québec region, occupying the northern half of the province, is sparsely populated and inhabited primarily by Aboriginal peoples. The climate around the major cities is four-season continental with cold and snowy winters combined with warm to hot humid summers, but further north long winter seasons dominate and as a result the northern areas of the province are marked by tundra conditions. Even in central Quebec at comparatively southerly latitudes winters are very severe in inland areas.
Montreal (i/ˌmʌntriːˈɒl/;French: Montréal,pronounced: [mɔ̃ʁeal]) is the largest city in the Canadian province of Quebec. It is the second largest city in Canada and the 26th largest in the Americas. Originally called Ville-Marie, or "City of Mary," it is named after Mount Royal, the triple-peaked hill in the heart of the city. The city is on the Island of Montreal, which took its name from the same source as the city, and a few much smaller peripheral islands, the largest of which is Île Bizard. It has a distinct four-season continental climate with warm to hot summers and cold snowy winters.
In 2011 the city had a population of 1,649,519. Montreal's metropolitan area had a population of 3,824,221 and a population of 1,886,481 in the urban agglomeration, with all of the municipalities on the Island of Montreal included. The 2014 estimate of the population of the metropolitan area of Montreal is 4.1 million.
French is the city's official language and is the language spoken at home by 56.9% of the population of the city, followed by English at 18.6% and 19.8% other languages (in the 2006 census). In the larger Montreal Census Metropolitan Area, 67.9% of the population speaks French at home, compared to 16.5% who speak English. Montreal is one of the most bilingual cities in Quebec and Canada with 56% of the population able to speak both English and French. Montreal is the second largest primarily French-speaking city in the world, after Paris.
Montreal is a Crusader castle on the eastern side of the Arabah, perched on the side of a rocky, conical mountain, looking out over fruit trees below. The ruins, called Shoubak or Shawbak in Arabic, are located in modern town of Shoubak in Jordan.
The castle was built in 1115 by Baldwin I of Jerusalem during his expedition to the area where he captured Aqaba on the Red Sea in 1116. Originally called 'Krak de Montreal' or 'Mons Regalis', it was named in honour of the king's own contribution to its construction (Mont Royal). It was strategically located on a hill on the plain of Edom, along the pilgrimage and caravan routes from Syria to Arabia. This allowed Baldwin to control the commerce of the area, as pilgrims and merchants needed permission to travel past it. It was surrounded by relatively fertile land, and two cisterns were carved into the hill, with a long, steep staircase leading to springs within the hill itself.
Montréal (historically, Montréal-du-Gers) is a commune in the Gers department in southwestern France.
The commune is situated in the Gers but close to the borders with Lot-et-Garonne and Landes. It is built on a promontory on the right bank of the river Auzoue.
The inhabitants are called Montréalais.
In the neighbourhood are numerous old castles, medieval walled villages, small towns built around castles and many "sacred" places because the Via Podiensis and the Way of St. James of Compostela which pass through Montréal.
Coordinates: 60°N 95°W / 60°N 95°W / 60; -95
Canada (i/ˈkænədə/; French: [ka.na.da]) is a country in the northern part of North America. Its ten provinces and three territories extend from the Atlantic to the Pacific and northward into the Arctic Ocean, covering 9.98 million square kilometres (3.85 million square miles), making it the world's second-largest country by total area and the fourth-largest country by land area. Canada's border with the United States is the world's longest land border. Canada is sparsely populated, the majority of its land territory being dominated by forest and tundra and the Rocky Mountains; about four-fifths of the country's population of 35 million people live near the southern border. The majority of Canada has a cold or severely cold winter climate, but southerly areas are warm in summer.
The land now called Canada has been inhabited for millennia by various Aboriginal peoples. Beginning in the 15th century, British and French colonies were established on the Atlantic coast, with the first establishment of a region called "Canada" occurring in 1537. As a consequence of various conflicts, the United Kingdom gained and lost territories within British North America until left, in the late 18th century, with what mostly geographically comprises Canada today. Pursuant to the British North America Act, on July 1, 1867, the colonies of Canada, New Brunswick, and Nova Scotia joined to form the autonomous federal Dominion of Canada. This began an accretion of provinces and territories to the self-governing Dominion to the present ten provinces and three territories forming modern Canada. In 1931, Canada achieved near total independence from the United Kingdom with the Statute of Westminster 1931, and full sovereignty was attained when the Canada Act 1982 removed the last remaining ties of legal dependence on the British parliament.
The Ecclesiastical Province of Canada was founded in 1860 and is one of four ecclesiastical provinces in the Anglican Church of Canada. Despite its name, the province covers only the former territory of Lower Canada (i.e., southern and eastern Quebec), the Maritimes, and Newfoundland and Labrador (Ontario was split off as a separate province in 1913). There are seven dioceses in the province:
Provinces of the Anglican Church of Canada are headed by a Metropolitan, elected from among the province's diocesan bishops. This bishop then becomes Archbishop of his or her diocese and Metropolitan of the Province. The current Metropolitan of the Province of Canada is the Most Rev. Percy D. Coffin, Archbishop of Western Newfoundland.
Canada may refer to a number of ships
Sailing ships:
Other:
How Quebec Plans To Save Itself From English Quebec is the only province in Canada where francophones make up the majority of the population, and for Quebecers, preserving the French language is the only possible safeguard for the survival of the Quebec identity and culture. So in a world where everything is dominated by English-speaking media, this is how Quebec is trying to save their province from anglicisation.
In this video, we'll show you the Top 10 Things to do in Québec City 2024. 👉 Support our channel by becoming a member: https://www.youtube.com/channel/UCbgx3Z8-u-QJa9PuKbI6vXQ/join 👉 Subscribe to our channel and turn on 🔔 http://bit.ly/travel-xtreme CHAPTERS: 0:00 Intro 0:50 #10 Fortifications of Quebec National Historic Site 1:32 #9 Observatoire de la Capitale (Capital Observatory) 2:31 #8 Basilica of Sainte-Anne-de-Beaupré 3:17 #7 Parliament Building (Hotel du Parlement) & Parliament Hill 4:07 #6 Château Frontenac 5:13 #5 Visit Musée de la civilisation 6:10 #4 Stroll through Quartier Petit Champlain 7:28 #3 See the Plains of Abraham (Champs de Bataille) 8:25 #2 Explore La Citadelle de Québec 9:32 #1 Wander through Place Royale #Quebec #Canada #Places Trip Xtreme presents the hot topic...
00:00 In this video 01:48 Intro 02:26 Dufferin Terrace 02:41 Fairmont Le Château Frontenac 07:48 Rue Saint-Louis 08:24 Place d'Armes 15:14 Rue Sainte-Anne 17:10 Escalier Frontenac 19:59 Côte de la Montagne 23:42 Escalier Casse-Cou 26:12 Rue du Petit Champlain 33:34 Terrasse du Petit Champlain 35:17 Rue Notre-Dame 36:49 Place Royale 41:28 Rue Saint-Pierre 43:28 Rue Sous-le-Fort 46:47 German Christmas Market at Rue Sainte-Anne 51:12 Rue des Jardins 55:57 German Christmas Market at Place de l'Hôtel-de-Ville 01:00:15 La Boutique de Noël de Québec 01:05:03 Rue De Buade 01:06:48 Rue du Trésor 01:08:59 German Christmas Market at Jardins de l'Hôtel-de-Ville 01:18:49 Côte de la Fabrique 01:22:21 Rue Saint-Jean 01:28:58 German Christmas Market at Place D'Youville 01:33:39 Giant Puppet Show(Saint Nic...
Quebec City is a little taste of Europe in Canada! From its charming cobblestone streets, historic architecture and chic bistros and cafes, you definitely don't feel like you're in Canada any more. Join me as I tour around some of the cities most famous sites like the Old Town, Dufferin Terrace, the Citadelle, Plains of Abraham and of course Petit Quartier Champlain. Of course you most try some REAL maple syrup when visiting Quebec, as well the national dish of poutine! Hope you enjoy the video and visit this amazing city yourself someday! Support my journey on Patreon: https://www.patreon.com/alinamcleod Paypal Account: [email protected] The travel health insurance I use - PassportCard Nomads: https://www.passportcardnomads.com/?ref=alinamcleod *I highly recommend this travel healt...
“How similar are the French varieties of France and Québec?” That is the question! And in the video I try to answer it. ** Learn FrenchPod101: ► http://bit.ly/frenchpod101 ◄ (Full disclosure: if you sign for a premium account, Langfocus receives a small referral fee. But the free account is great too!)** Special thanks to Adriane Paquin-Côté for her feedback and Québec French audio samples; Lùthais MacGriogair for his feedback and Metropolitan French samples; and Rémi Peyral for his feedback and additional Metropolitan French samples. Check out Langfocus on Patreon: http://patreon.com/langfocus Current Patreon members include: Adam Fitch, Andres Resendez Borgia, Anjo Beijo, Auguste Fields, Bennett Seacrist, Brandon Gonzalez, Brian Michalowski, Danny, Fiona de Visser, Georgina Toland...
Quebec – Looking for the best things to do in the city? Click play on our travel guide to get an insider’s peek at this Canadian destination. When ready, browse vacation packages to Quebec: https://www.expedia.com/Quebec.d180017.Destination-Travel-Guides You don’t need to go all the way to France to say “Bonjour” and nibble on croissants. #Quebec maintains strong ties to its French roots, which date back to 1608. The town’s official language is French and it’s even home to a replica of Norte Dame. While on #vacation here, mosey around the cafes and shops in North America’s oldest retail district, and #visit the Musee de la Civilisation. Embark on a Quebec City #tour around the colonial buildings in Dufferin Terrace, the history at Battlefields Park, and the stunning beauty of Montmore...
These 14 tips to know before visiting Quebec City are what I wish I knew before my trip to Quebec City, Canada. Hopefully these travel tips will help you from making some of my mistakes when traveling through Canada! My newsletter with weekly travel tips (and food recommendations) -- https://bit.ly/TheTuesdayTravelTip The eSIM I use to keep my phone connected when abroad -- https://airalo.pxf.io/CamdenDavid --You can get 15% off as a new user by using code: CAMDEN15 My favorite universal adapter -- https://amzn.to/3N0YzAg DISCLAIMER: I only express my opinion based on my experience. Your experience may be different. Links above may include affiliate commission or referrals. I'm part of an affiliate network and I receive compensation from partnering websites. This video is accurate as ...
Original content filmed and edited in 8K resolution. Quebec City is the capital city of the Canadian province of Quebec. Is also one of the oldest European cities in North America. In the first day of filming we really forgot that we were on an American continent. This city feels so European that we felt like we were filming in France. "With a cliff-top position above the St Lawrence River and captivatingly picturesque old streets, North America’s oldest French-speaking city is a gorgeous, seductive place." NOTE: To view at 8K please use Chrome, Firefox or Opera. LICENSING & BUSINESS INQUIRIES ► [email protected] ► SHOT ON RED Helium 8K and RED Dragon 5K ► MUSIC by MusicBed.com LICENSING & BUSINESS INQUIRIES ► [email protected] Video Production: SC Around The...
Big thanks to LMNT for partnering with us in this video! Head to http://DrinkLMNT.com/ONWORLDTRAVEL if you want to try out our favorite LMNT flavors (Nathan's is grapefruit salt and mine is watermelon salt) and you'll also receive 8 single serving packets FREE with your order! 🤘🏽 Quebec City may be Canada's most elegant city! The whole place has definitely got a fairytale vibe and European charm and we would happily come back in winter when everything gets covered in snow! ____________ Support this channel by subscribing! https://www.youtube.com/onworldtravel?sub_confirmation=1 This is our favorite travel credit card. https://www.referyourchasecard.com/6j/YDUCMCAYGV This is our travel medical insurance of choice. https://b.link/SafetyWing/ONWorldTravel This our favorite e-sim hand...
00:00 Intro 00:25 Rue Saint-Paul 01:40 La Vivrière 02:42 Rue du Sault-au-Matelot 07:26 Côte de la Montagne 08:33 Rue Notre-Dame 11:25 Place Royale 14:32 Rue Saint-Pierre 15:35 Rue Sous-le-Fort 17:00 Rue du Cul-de-Sac 19:04 Terrasse du Petit Champlain 19:32 Rue du Petit Champlain 22:14 Parc Félix-Leclerc 25:59 Escalier Casse-Cou (Breakneck Steps) 26:58 Côte de la Montagne 30:55 Montmorency Park 34:44 Frontenac Stairs 36:47 Fort St 39:21 Rue Sainte-Anne 41:00 Rue des Jardins 41:46 Jardins de l'Hôtel-de-Ville 43:54 Hôtel de Ville de Québec 44:50 Rue De Buade 45:39 La Boutique de Noël de Québec Filmed on: Oct. 07, 2024 (Mon. 5:05pm) Temp: 61°F 16°C Route on Google maps: https://maps.app.goo.gl/W36gSRoB65SgwXkD9 Music: 🎵A Wishful Night By Martin Landström For supporting my channel: 😍☕🧆💖 ...
MONTREAL, CANADA: Are you searching for the best things to do in Montreal Canada for 2025? Today we show you 21 things to see and do in Montreal. In this Montreal travel vlog we go to St Helens Island, up to the Mount Royal Park, Walk around Old Port and Montreal Old Town. We show you the Botanical Garden and some of the local food in Montreal. We also show you Chinatown, talk about the festivals in Montreal and provide some general facts. We did several Canada travel videos including a Toronto travel video and showed you around Toronto and Quebec City that can serve as your Canadian travel guide. If you enjoy this Montreal vlog and have any questions please feel free to ask. We love showing you around the Montreal attractions and where to go in Montreal. More Canada Travel Videos: Mon...
Become an Attaché member today for great perks and exclusive access - https://www.youtube.com/channel/UCbkrifxiaHa0nVwW2sDCVqw/join Get 10% off ALL Carl Friedrik products at https://friedrik.com/csv with promo code ATTACHE0111. Offer Expires Nov 9, 2022. Our Montreal travel guide! I don't know what I expected from Montreal but it certainly wasn't what I got. What a place. It really feels like Montreal shouldn't exist, it's such a strange confluence of cultures. But I am so glad it does. And I finally got to experience my Montreal food unicorn - poutine. Glorious, wonderful, Montreal poutine. Absolutely worth waiting 43 years for! Montreal, you have my heart...despite the clogged arteries. 00:00 - Intro 01:07 - Transport 04:33 - Sponsor 06:01 - Food 10:39 - Money To help us create more ...
http://theweeknd.co/BeautyBehindTheMadness THE MADNESS FALL TOUR 2015: http://republicrec.co/BBTMtickets
How to Support these videos: 💲 Donate via PayPal: https://www.paypal.me/danvineberg 💲 Support Monthly: https://www.patreon.com/thenewtravel 💲 Support via YouTube (click Join button) Check out my "Life in Montreal" playlist for more videos from Montreal: https://youtube.com/playlist?list=PLy6sv6ZuyrMs6HpAs7uAKWMJluZkUmpkB Or, watch the newest video from The New Travel: http://bit.ly/Newest-Video-Link Or, check out my 2nd Channel: https://www.youtube.com/channel/UCS1RbrMgMas37BD4ELZNCHQ Email (for business use only) : ► danvineberg (at) gmail.com As always, I'm Dan from The New Travel. Thanks for watching! #Montreal #Toronto #Canada
Montreal – A stunning Canadian metropolis combining old-world architecture with modern dashes. Start planning a trip of your own after checking out the best sights here. When ready, browse vacation packages to Montreal: https://www.expedia.com/Montreal.d178288.Destination-Travel-Guides When Mark Twain visited #Montreal in the 19th century, he was so taken by its many churches that he nicknamed it “The City of 100 Bell Towers.” Marvel at the imposing stone façade of Christ Church Cathedral, or stand beneath the great arched ceiling of the beautiful Notre Dame Basilica. If you’re a foodie, you’re in luck, because the residents of Montreal adore a good meal, whether it’s poutine from a street-side bistro or fresh produce from the farmers market. A #tour of Montreal will take you across...
Get an exclusive Surfshark deal! Enter promo code ALINA for an extra 3 months free at https://surfshark.deals/ALINA Montreal is an amazing cosmopolitan city in the French speaking province of Quebec. It is well known for its beautiful historic buildings, diverse restaurant scene and true appreciation in preserving the arts. Whether you come to Montreal for just 24hrs or longer, I hope this video will give you some suggestions of top things to see and do in this incredible city! Support my journey on Patreon: https://www.patreon.com/alinamcleod Paypal Account: [email protected] The travel health insurance I use - PassportCard Nomads: https://www.passportcardnomads.com/?ref=alinamcleod *I highly recommend this travel health insurance because you don't have to pay out of pocket for y...
Jeremy Jacobowitz is in Montreal visiting the 6 restaurants you have to eat at! #montreal #montrealcity #foodtravel #poutine Instagram: https://www.instagram.com/jeremyjacobowitz 434k+ Tiktok: https://www.tiktok.com/@jeremyjacobowitz 184k+ Discord: https://discord.gg/j5Ya3RzZ4m Twtich: https://www.twitch.tv/jeremyjacobowitz Facebook:https://www.facebook.com/BrunchBoys Twitter: https://twitter.com/BrunchBoys Check out my Gear: https://www.amazon.com/shop/brunchboys
If you’re visiting Canada as a person who likes dense, lively cities, our #1 recommendation is Montreal. It’s the strongest city for bike culture and infrastructure and it’s miles ahead on car-free streets and other pedestrian improvements, especially in the warmer months. Toronto and Vancouver stack up pretty well on transit so we can’t say that Montreal is the best there, but it’s unique with the Paris-inspired metro that’s full of interesting architecture and art. Keep Urbanity rolling: Join our Patreon for early releases, credit at the end of each video, and bonus content: https://www.patreon.com/ohtheurbanity Contact form: https://docs.google.com/forms/d/1NeALCmO6ELwJAGPyV46BVbl5JXzjlWl6emH3ZRNiCiw/edit Subscribe on YouTube: https://www.youtube.com/channel/UCN5CBM1NkqDYAHgS-AbgGHA?...
#montreal #quebec #travel #canada
"Montreal" is The Weeknd's song from his 2011 album "Echoes of Silence". Vocals: The Weeknd Recorded At: Site Sound Studios, Toronto, ON Release Date: December 21, 2011 Sampled In: Pressure by Youngs Teflon Interpolates: Laisse tomber les filles by France Gall ✖ Follow The Weeknd! https://www.theweeknd.com/ https://www.instagram.com/theweeknd https://twitter.com/theweeknd https://www.facebook.com/theweeknd 🎤 Lyrics: [Intro] Laisse tomber les filles Laisse tomber les filles Un jour c'est toi qu'on laissera Laisse tomber les filles Laisse tomber les filles Un jour c'est toi qu'on laissera Oui j'ai pleuré mais ce jour-là Non, je ne pleurerai pas Non, je ne pleurerai pas Oui j'ai pleuré mais ce jour-là Je ne pleurerai pas Je ne pleurerai pas [Verse 1] I guess you had no idea that you coul...
Follow the history of this once magnificent crusader castle Montreal, located in modern day Jordan... The castle was built in 1115 AD by Baldwin 1st King of Jerusalem and was the crusader's headquarters in The Lordship of Oultrejordain for over 30 years
Tour of Shobak Crusader Castle in Jordan. Shobak was built by the Crusader French king Baldwin I in 1115. Its defenders withstood numerous attacks from the armies of Saladin (Salah ad Din) before succumbing in 1189 after a 1 year siege.
Shobak castle and the smallest hotel in the world are next it other, and the musa springs water in the Mussa valley before Petra Jordan 🇯🇴, Palma family and Marianne Gundayao visited on this place .
Like, Share & Subscribe for the latest videos My book HANDY CRUISE COMPANION, Cruise with Confidence is available on Amazon http://bit.ly/HandyCruiseCompanioneBook Check out my website http://www.julescruisecompanion.com.au/ Follow me on Facebook https://www.facebook.com/julie.burgess.5011 Follow me on Instagram https://www.instagram.com/julescruisecompanion/?hl=en Copyright JCC
Step into the captivating history of Shobak, the iconic Crusader fortress nestled in the hills of Jordan. Delve deep into 12th-century tales and trace the footsteps of legends like Baldwin I and Reynald of Châtillon. For an in-depth exploration and enriching details about this historical gem and Jordan itself, visit our website: https://www.travel-video.info/en/videos-en/shobak-krak-montreal-jordan.html. For broader insights, our website also offers details about Jordan (Middle East) at https://www.travel-video.info/en/list-of-the-countries/jordan.html. For international viewers, we have versions in French: https://www.travel-video.info/videos-fr/shabak-krak-montreal-jordanie.html and Dutch: https://www.travel-video.info/nl/videos-nl/shobak-krak-montreal-jordanie.html. Join us on this jour...
The Shobak Castle is located on the top of a hill that overlooks the small town of Shobak, surrounded by a desert area, and it is 210 kilometers south of Amman. Al-Shoubak Castle, called in European languages, Montreal Castle, meaning the majestic mountain, is a Crusader castle on the eastern side of Wadi Araba. Perched on top of a cone-shaped rocky mountain. Overlooking the dense trees and valleys in which the water runs during that period. The castle is located 120 km south of Karak, and 35 km north of Petra, capital of the Nabateans. The castle played an important role during the Crusades, as it helped cut off transportation routes for commercial convoys and military campaigns between Egypt and Damascus, but Salah al-Din al-Ayyubi hit it severely in the year 1187 CE while heading towar...
Visit Jordan Sightseeing Near Petra Ash Shobak Castle Shubak Castle Montreal الشوباك
To get the most out of a trip to Jordan by hiring a professional driver like Ali Farash. It is the best investment. Hiring Ali gave me the flexibility to go anywhere I wanted. He offered suggestions to visit places the average tourist would not know about. He made every wish I had come true. 5 castles in 1 day. Subscribe and stay up to date with my journey by clicking the subscribe button. Check out other videos for handy hints and tips. My book HANDY CRUISE COMPANION, Cruise with Confidence is available on Amazon http://bit.ly/HandyCruiseCompanioneBook Check out my website http://www.julescruisecompanion.com.au/ Follow me on Facebook https://www.facebook.com/julie.burges... Follow me on Instagram https://www.instagram.com/julescruise... Copyright JCC
JHRC takes you in an unprecedented journey to the south of Jordan; to where a magnificent castle crowns wild rocks and spreads over rugged landscapes
El Shobak
https://kingdomofjordan.blogspot.com/2012/03/shobak-castle-jordan.html Part of the great beacon chain of Crusader fortresses, Shobak Castle is by far the most lonely. Built in 1115 AD by Baldwin I, who later built Karak, it was originally known as Mont Realis (Montreal) and was the first outpost of the kingdom of Jerusalem in the Crusader district of Outrejordain. Situated on an isolated knoll overlooking the trade routes that ran through the wadi below, Shobak is breathtaking. Facebook: https://web.facebook.com/Kingdom-of-J... Instagram: https://www.instagram.com/kingdomofjo... twitter: https://twitter.com/kingdomofjorda2 p interest: https://www.pinterest.com/kingdomofjo
During our trip in Jordan we visited the Crusader castle Shobak. Shobak and Karak are the most famous Crusader castles in Jordan. They are located on the Kings highway. We visited these historical castles on our way from Dead sea to Petra. Shobak is situated only 35 km from the most popular sight of Jordan – Petra. The castle was built in 1115 AD by Baldwin 1st King of Jerusalem and was the crusaders headquarters in Jordan for over 30 years. We spent in the castle more than an hour. It was very cold and the weather was very windy (it was very cold in Jordan in January 2015). It was very interesting to explore the ruins! There were no tourists there except us! We even managed to find a secret tunnel under the ruins of the castle! Enjoy another video about Jordan: One day jeep safari in ...
http://www.petranightstours.com Strategically located on a hill the Crusader castle Shobak, built by Baldwin I Jerusalem, controlled pilgrimage and caravan routes.
Quebec (i/kwᵻˈbɛk/ or /kəˈbɛk/; French: Québec [kebɛk]) is the second-most populous province in Canada. It is the only Canadian province that has a predominantly French-speaking population, and the only one to have French as its sole provincial official language.
Quebec is Canada's largest province by area and its second-largest administrative division; only the territory of Nunavut is larger. It is bordered to the west by the province of Ontario, James Bay, and Hudson Bay; to the north by Hudson Strait and Ungava Bay; to the east by the Gulf of Saint Lawrence and the province of Newfoundland and Labrador; it is bordered on the south by the province of New Brunswick and the U.S. states of Maine, New Hampshire, Vermont, and New York. It also shares maritime borders with Nunavut, Prince Edward Island, and Nova Scotia.
Quebec is Canada's second most populous province, after Ontario. Most inhabitants live in urban areas near the Saint Lawrence River between Montreal and Quebec City, the capital. Approximately half of Quebec residents live in the Greater Montreal Area, including the Island of Montreal. English-speaking communities and English-language institutions are concentrated in the west of the island of Montreal but are also significantly present in the Outaouais, Eastern Townships, and Gaspé regions. The Nord-du-Québec region, occupying the northern half of the province, is sparsely populated and inhabited primarily by Aboriginal peoples. The climate around the major cities is four-season continental with cold and snowy winters combined with warm to hot humid summers, but further north long winter seasons dominate and as a result the northern areas of the province are marked by tundra conditions. Even in central Quebec at comparatively southerly latitudes winters are very severe in inland areas.