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

Washington, D.C.

Washington, D.C., formally the District of Columbia and commonly referred to as "Washington", "the District", or simply "D.C.", is the capital of the United States. The signing of the Residence Act on July 16, 1790, approved the creation of a capital district located along the Potomac River on the country's East Coast. The U.S. Constitution provided for a federal district under the exclusive jurisdiction of the Congress and the District is therefore not a part of any U.S. state.

The states of Maryland and Virginia each donated land to form the federal district, which included the pre-existing settlements of Georgetown and Alexandria. Named in honor of George Washington, the City of Washington was founded in 1791 to serve as the new national capital. In 1846, Congress returned the land originally ceded by Virginia; in 1871, it created a single municipal government for the remaining portion of the District.

Washington had an estimated population of 672,228 as of July 2015. Commuters from the surrounding Maryland and Virginia suburbs raise the city's population to more than one million during the workweek. The Washington metropolitan area, of which the District is a part, has a population of over 6 million, the seventh-largest metropolitan statistical area in the country.

Union Station (Washington, D.C.)

Washington, D.C., Union Station is a major train station, transportation hub, and leisure destination in Washington, D.C. Opened in 1907, it is Amtrak's headquarters and the railroad's second-busiest station, with annual ridership of over 5 million. The station also serves MARC and VRE commuter rail services, the Washington Metro, and buses.

At the height of its traffic, during World War II, as many as 200,000 people passed through in a single day. In 1988, a headhouse wing was added and the original station renovated for use as a shopping mall. Today, Union Station is one of the busiest rail facilities and shopping destinations in the country, and is visited by over 40 million people a year.

History

Predecessor terminals

Before Union Station opened, each of the major railroads operated their own stations: Baltimore and Ohio Railroad trains arrived and departed from the New Jersey Avenue Station, while the Baltimore and Potomac Railroad (a subsidiary of the Pennsylvania Railroad) operated from its own station at 6th and B Street, NW—the current location of the National Gallery of Art.

Northeast, Washington, D.C.

Northeast (NE or N.E.) is the northeastern quadrant of Washington, D.C., the capital of the United States. It encompasses the area located north of East Capitol Street and east of North Capitol Street.

Northeast includes the neighborhoods of

  • Atlas District (H Street Corridor)
  • Brentwood
  • Brookland
  • Deanwood
  • Eckington
  • Edgewood
  • Fort Lincoln
  • Fort Totten
  • Ivy City
  • Kenilworth
  • Kingman Park
  • Marshall Heights
  • Michigan Park
  • Near Northeast
  • Pleasant Hill
  • Riggs Park
  • Stanton Park
  • Trinidad
  • Woodridge
  • A significant section of Capitol Hill is also located in Northeast, as is part of NoMa. The population of Northeast is predominantly African-American, particularly east of the Anacostia River.

    Politically, Northeast includes most of Ward 5, much of Wards 6 and 7, and parts of Ward 4.

    Landmarks

    Northeast is home to Gallaudet University, a federally chartered private university for the education of the deaf and hard of hearing located in the Trinidad neighborhood. It is also home to The Catholic University of America and Trinity Washington University, two of the Catholic institutions which give the Brookland neighborhood its nickname of "Little Rome" or "Little Vatican." Others include the Basilica of the National Shrine of the Immaculate Conception, the Saint John Paul II National Shrine, the Mount St. Sepulchre Franciscan Monastery, and the headquarters of the United States Conference of Catholic Bishops.

    Podcasts:

    Washington

    ALBUMS

    Mount Washington

    ALBUMS

    Washington

    ALBUMS

    Washington

    ALBUMS

    Washington

    ALBUMS

    • Washington D.C. Vacation Travel Guide | Expedia

      Washington D.C. – Take in the many splendors of the nation’s capital. Explore the city with us and start planning a journey of your own! When ready, browse vacation packages to Washington: https://www.expedia.com/Washington.d178318.Destination-Travel-Guides Your #Washington, D.C. #vacation should start at the National Mall, where you’ll find monuments, memorials, and government buildings instead of tons of shopping. #Visit the Watergate Hotel and Kennedy Center when you stop at Foggy Bottom, then move on to Georgetown, the oldest district in D.C. It’s filled with 18th-century buildings and, of course, the university itself. If you’re feeling the need to channel your inner 007, go to the International Spy Museum, and learn about the covert operations and intelligence agencies that hav...

      published: 07 Mar 2013
    • WASHINGTON DC TRAVEL GUIDE: 11 Things to Know Before You Go

      Everything you need to know to go to Washington DC. Washington, D.C. is the capital of the United States, and it is home to many important historical landmarks and government buildings. Some of the most famous attractions include the White House, the Capitol Building, the Supreme Court, and the Washington Monument. They can also learn about American history at t 💲💲💲 Get up to 40% off hotels in Washington DC by signing up here: https://plannin.com/en/search?googleResult=ChIJW-T2Wt7Gt4kRKl2I1CJFUsI&refId=YellowProductions ✅ You might enjoy more videos from my Washington DC travel series here: https://www.youtube.com/playlist?list=PLOVadUHX1B-LzjJe-0yf70g50bnHLVhnj TABLE OF CONTENTS: 00:00 1. All about Washington DC 01:45 2. Orientation 03:20 3. Getting In to DC 05:51 4. Getting Around DC...

      published: 11 Aug 2023
    • TOP 10 Things to do in WASHINGTON, D.C. | DC Travel Guide

      🔥📚 Get our D.C. PDF Guide for ONLY $6.99 👉 https://gum.co/WasGD 🔥 By purchasing our travel guide you're also helping us sustain this channel - ❤️ BIG Thank You! Here are the Top 10 things to do in Washington, D.C. CHAPTERS: 0:00 Intro 0:30 10. Washington Monument 1:31 9. Lincoln Memorial & Other Memorials 2:58 8. United States Botanic Garden 3:48 7. Museums 5:03 6. The National Mall 5:56 5. Arlington National Cemetery 7:00 4. Smithsonian's National ZOO 7:42 3. The White House 8:41 2. United States Capitol 9:44 1. Georgetown OUR SOCIAL MEDIA: ⭐Instagram: https://www.instagram.com/hungrypassporttravel/ ⭐Facebook: https://www.facebook.com/hungrypassporttravel/ ⭐Twitter: https://twitter.com/Hungry_Passport For collaboration and inquiries: hpassport.travel(at)gmail.com 👉Visit our W...

      published: 14 Aug 2019
    • The Genius Design of Washington D.C.

      Washington D.C. is widely recognized as one of the best designed Capital Cities in the world. In this video, we take a look at the history behind this design, and how it has influenced urban planning across the globe. Thanks for Watching, and consider subscribing if you enjoyed the video. #Washington #urbanplanning #infrastructure © 2023 Arkive Productions LLC

      published: 01 Apr 2023
    • 20 Essential Tips for a First Visit to Washington, DC

      The seat of American government, bustling Washington DC is home to the touchstone by which all other museums are judged as well as monuments and memorials that tell the story of the nation’s rich history. A DC trip can be easier on the budget than other destinations across the country because so many attractions within the city are free. If you plan on spending time in the District and you’ve never been here before, we’ve put together a list just for you. In this episode, we share with you 20 essential tips for a first visit to Washington DC. #WashingtonDC #DC #TravelTips 🌐 GALLIVANTER WEBSITE/BLOG. https://chadgallivanter.com/blog/dc 📬 MAIL. Chad Gallivanter P.O. Box 636 Lake Helen, FL 32744 📱 SOCIAL. TWITTER: http://twitter.com/ChadGallivanter INSTAGRAM: http://instagram.com/Chad...

      published: 17 Aug 2022
    • 15-year-old girl shot, killed in Southeast DC | NBC4 Washington

      A community is heartbroken after a 15-year-old girl was shot and killed in the Barry Farm area. News4's Derrick Ward reports. _______ NBC4 Washington / WRC-TV is the No. 1 broadcast television station and the home of the most-watched local news in Washington, D.C. NBCWashington.com is the market’s most-visited local television station website across all platforms. FOLLOW & STREAM NBC4 WASHINGTON Xumo Play: https://play.xumo.com/live-guide/nbc-washington-dc-news Roku: https://therokuchannel.roku.com/watch/021707311e0b595597f97a389e0051e6/nbc-washington-dc-news Also available on Freevee, Google TV, TCL, Local Now, and Samsung TV Plus. More here: https://www.nbcwashington.com/watchlive/ Instagram: http://nbc4dc.com/3HxYkYH Threads: http://nbc4dc.com/ZYZAAHJ Facebook: http://nbc4dc.com/iD1G...

      published: 15 Apr 2024
    • Washington D.C. - City Video Guide

      http://www.expedia.com.au/Washington.d178318.Destination-Travel-Guides Washington D.C. is situated on the east coast of the USA, along the banks of the Potomac River. Most visitors begin at the National Mall. Zero Milestone is the proposed reference point for distances on all US maps. To the north is the White House. To the south stands the Washington Monument. The US Capitol Building, atop Capitol Hill, is the nation's seat of federal government. The Mall is also home to many of the nation's Smithsonian buildings, including the Smithsonian National Air and Space Museum. Reflecting Pool is surrounded by tributes to its heroes and founding fathers, including the Vietnam Veterans Memorial, and the Lincoln Memorial. Washington D.C.'s Capital Bikeshare system makes it easy to reach dow...

      published: 17 Apr 2013
    • Washington, D.C. History in 5 Minutes - Animated

      A 5-minute animated history of Washington, D.C. - The capital of the United States of America. Don't forget to check out our other animations of American History: Animated history of Halloween: https://youtu.be/uyxadwwT2lE Animated history of Easter Eggs: https://youtu.be/DiwzYdQjEsg Animated history of White House: https://youtu.be/L8W22w3ujGY Animated history of Texas: https://youtu.be/hvOxSQYq2W4 Animated history of Wall Street: https://youtu.be/hvOxSQYq2W4 Animated history of California: https://youtu.be/fjm1v_LPtkI Animated history of Washington, D.C.: https://youtu.be/3Z7GAPEt4tc Animated History of Viking: https://youtu.be/yak4JLMSN4g Animated History of Martin Luther King, Jr.: https://youtu.be/Hmw8QjLjDh0 Image Credits: Wikipedia, Pixapay, Archives.gov

      published: 12 Mar 2019
    • North Dakota veterans receive hero’s welcome in Washington, D.C.

      More than 100 veterans from western North Dakota got a hero’s welcome to our nation’s capital Sunday morning. For more Local News from KFYR: https://www.kfyrtv.com/ For more YouTube Content: https://www.youtube.com/channel/UCrg4C3ro-FW8MGH_ayIUk_g

      published: 15 Apr 2024
    • THINGS TO KNOW BEFORE YOU GO TO WASHINGTON DC

      Today we share the things to know before you go to Washington DC including when to go to Washington DC and the best time to visit Washington DC. We share tips on getting to Washington DC and how to get around Washington DC, all in this Washington DC Vacation Guide. We share typical prices in Washington DC and how to save money in Washington DC, perfect for those wanting to visit Washington DC on a budget. We also share the best things to do in Washington DC, perfect for those planning a trip to Washington DC. ►► Hop on, Hop off Bus ►► https://fave.co/466pEJB ►► Nighttime Monuments Tour ►► https://bit.ly/3N4LNQ4 ►► National Mall Tour ►► https://bit.ly/42z08da Affiliates, links and resources ______________________ 🎧 MUSIC 🎧 Epidemic Sound. Try it for FREE here → https://www.epidemicsound...

      published: 14 Jun 2023
    developed with YouTube
    Washington D.C. Vacation Travel Guide | Expedia
    5:47

    Washington D.C. Vacation Travel Guide | Expedia

    • Order:
    • Duration: 5:47
    • Uploaded Date: 07 Mar 2013
    • views: 3095386
    Washington D.C. – Take in the many splendors of the nation’s capital. Explore the city with us and start planning a journey of your own! When ready, browse vacation packages to Washington: https://www.expedia.com/Washington.d178318.Destination-Travel-Guides Your #Washington, D.C. #vacation should start at the National Mall, where you’ll find monuments, memorials, and government buildings instead of tons of shopping. #Visit the Watergate Hotel and Kennedy Center when you stop at Foggy Bottom, then move on to Georgetown, the oldest district in D.C. It’s filled with 18th-century buildings and, of course, the university itself. If you’re feeling the need to channel your inner 007, go to the International Spy Museum, and learn about the covert operations and intelligence agencies that have shaped the world we live in. Of course, you can’t enjoy any Washington, D.C. #tour without admiring the White House, so make sure that’s on your list too. For now, we hope you enjoy watching this #travel #guide as much as we enjoyed making it. More travel information around Washington: https://www.expedia.com/Washington.dx178318 Subscribe to Expedia’s YouTube Channel for great travel videos and join the conversation on the best vacation ideas. --------- Follow us on social media: FACEBOOK: https://www.facebook.com/expedia TWITTER: https://twitter.com/Expedia INSTAGRAM: https://instagram.com/expedia/ PINTEREST: https://www.pinterest.com/expedia --------- 0:00 - Washington D.C. 0:41 - The National Mall 1:00 - Zero Milestone 1:09 - The White House and Washington Monument 1:26 - Capitol Building 1:34 - Reflecting Pool 1:48 - Vietnam Veterans Memorial 2:02 - Lincoln Memorial 2:09 - Franklin Delano Roosevelt Memorial 2:20 - Thomas Jefferson Memorial 2:30 - Smithsonian Castle 2:47 - Smithsonian National Air and Space Museum 2:59 - Newseum 3:09 - United States Botanic Garden 3:27 - DuPont Circle 3:37 - Foggy Bottom 3:50 - Georgetown 4:03 - Wisconsin Avenue and M Street 4:09 - National Cathedral 4:18 - Smithsonian National Zoo 4:27 - International Spy Museum 4:38 - Arlington National Cemetery 5:01 - Arlington House
    https://wn.com/Washington_D.C._Vacation_Travel_Guide_|_Expedia
    WASHINGTON DC TRAVEL GUIDE: 11 Things to Know Before You Go
    31:02

    WASHINGTON DC TRAVEL GUIDE: 11 Things to Know Before You Go

    • Order:
    • Duration: 31:02
    • Uploaded Date: 11 Aug 2023
    • views: 178394
    Everything you need to know to go to Washington DC. Washington, D.C. is the capital of the United States, and it is home to many important historical landmarks and government buildings. Some of the most famous attractions include the White House, the Capitol Building, the Supreme Court, and the Washington Monument. They can also learn about American history at t 💲💲💲 Get up to 40% off hotels in Washington DC by signing up here: https://plannin.com/en/search?googleResult=ChIJW-T2Wt7Gt4kRKl2I1CJFUsI&refId=YellowProductions ✅ You might enjoy more videos from my Washington DC travel series here: https://www.youtube.com/playlist?list=PLOVadUHX1B-LzjJe-0yf70g50bnHLVhnj TABLE OF CONTENTS: 00:00 1. All about Washington DC 01:45 2. Orientation 03:20 3. Getting In to DC 05:51 4. Getting Around DC 09:30 5. Weather in DC 11:54 6. Where to Stay in DC 14:29 7. What to Eat in DC 19:24 8. Where to Shop in DC 20:49 9. Museums in DC 22:33 10. Government Attractions in DC 26:12 11. Things To do in Washington DC 💡 Yellow Productions on Social Media: FACEBOOK: https://facebook.com/YellowProductionsTravel INSTAGRAM: https://instagram.com/yellowwproductions/ TWITTER: https://twitter.com/chrisraney OCGirl @ INSTAGRAM: https://www.instagram.com/ocgirl.notebook/ 🔔 BUSINESS INQUIRIES: chris@yellow-productions.com ✔️ Explore more of my content on my 2nd channel, the Office Survival Guide: https://www.youtube.com/channel/UCkeyiJNicoE7FMIwNvcsZ8g 😀 Yellow Productions Merchandise: https://shop.yellow-productions.com/ 📢 Check out my blog: http://yelloww.net 🚀 My travel video gear: Sony FDR-AX53 4K Handycam: http://amzn.to/2hYePVc Sony ECMW1M Wireless Microphone: http://amzn.to/2gQKDGG Pacsafe LS250 Anti-theft Shoulder Bag: http://amzn.to/2h0YCNt 🚀 My walking tour gear: Samsung Galaxy S23 Ultra: https://amzn.to/3xuRcZg DJI Mic: https://amzn.to/3IzSbh1 DJI OM 4 Gimbal: https://amzn.to/3cCCQLC DJI OM 6 Gimbal: https://amzn.to/3lOubh4 🚀 My live stream and studio gear: Sony A7SIII Camera: https://amzn.to/3rYY5NS​ Sony ECM-B1M Microphone: https://amzn.to/3tx3cFl
    https://wn.com/Washington_DC_Travel_Guide_11_Things_To_Know_Before_You_Go
    TOP 10 Things to do in WASHINGTON, D.C. | DC Travel Guide
    11:27

    TOP 10 Things to do in WASHINGTON, D.C. | DC Travel Guide

    • Order:
    • Duration: 11:27
    • Uploaded Date: 14 Aug 2019
    • views: 757313
    🔥📚 Get our D.C. PDF Guide for ONLY $6.99 👉 https://gum.co/WasGD 🔥 By purchasing our travel guide you're also helping us sustain this channel - ❤️ BIG Thank You! Here are the Top 10 things to do in Washington, D.C. CHAPTERS: 0:00 Intro 0:30 10. Washington Monument 1:31 9. Lincoln Memorial & Other Memorials 2:58 8. United States Botanic Garden 3:48 7. Museums 5:03 6. The National Mall 5:56 5. Arlington National Cemetery 7:00 4. Smithsonian's National ZOO 7:42 3. The White House 8:41 2. United States Capitol 9:44 1. Georgetown OUR SOCIAL MEDIA: ⭐Instagram: https://www.instagram.com/hungrypassporttravel/ ⭐Facebook: https://www.facebook.com/hungrypassporttravel/ ⭐Twitter: https://twitter.com/Hungry_Passport For collaboration and inquiries: hpassport.travel(at)gmail.com 👉Visit our WEBSITE: https://www.hungrypassport.xyz/ #washingtondc #travelguide #UScapital 🏢😎 Large office space options are becoming increasingly popular across Washington, D.C. View the available listings here: 👉 https://www.squarefoot.com/dc/washington/office-space 👈 (sponsored)
    https://wn.com/Top_10_Things_To_Do_In_Washington,_D.C._|_DC_Travel_Guide
    The Genius Design of Washington D.C.
    8:01

    The Genius Design of Washington D.C.

    • Order:
    • Duration: 8:01
    • Uploaded Date: 01 Apr 2023
    • views: 502973
    Washington D.C. is widely recognized as one of the best designed Capital Cities in the world. In this video, we take a look at the history behind this design, and how it has influenced urban planning across the globe. Thanks for Watching, and consider subscribing if you enjoyed the video. #Washington #urbanplanning #infrastructure © 2023 Arkive Productions LLC
    https://wn.com/The_Genius_Design_Of_Washington_D.C.
    20 Essential Tips for a First Visit to Washington, DC
    13:44

    20 Essential Tips for a First Visit to Washington, DC

    • Order:
    • Duration: 13:44
    • Uploaded Date: 17 Aug 2022
    • views: 326096
    The seat of American government, bustling Washington DC is home to the touchstone by which all other museums are judged as well as monuments and memorials that tell the story of the nation’s rich history. A DC trip can be easier on the budget than other destinations across the country because so many attractions within the city are free. If you plan on spending time in the District and you’ve never been here before, we’ve put together a list just for you. In this episode, we share with you 20 essential tips for a first visit to Washington DC. #WashingtonDC #DC #TravelTips 🌐 GALLIVANTER WEBSITE/BLOG. https://chadgallivanter.com/blog/dc 📬 MAIL. Chad Gallivanter P.O. Box 636 Lake Helen, FL 32744 📱 SOCIAL. TWITTER: http://twitter.com/ChadGallivanter INSTAGRAM: http://instagram.com/ChadGallivanter FACEBOOK: http://facebook.com/ChadGallivanter
    https://wn.com/20_Essential_Tips_For_A_First_Visit_To_Washington,_DC
    15-year-old girl shot, killed in Southeast DC | NBC4 Washington
    1:54

    15-year-old girl shot, killed in Southeast DC | NBC4 Washington

    • Order:
    • Duration: 1:54
    • Uploaded Date: 15 Apr 2024
    • views: 3351
    A community is heartbroken after a 15-year-old girl was shot and killed in the Barry Farm area. News4's Derrick Ward reports. _______ NBC4 Washington / WRC-TV is the No. 1 broadcast television station and the home of the most-watched local news in Washington, D.C. NBCWashington.com is the market’s most-visited local television station website across all platforms. FOLLOW & STREAM NBC4 WASHINGTON Xumo Play: https://play.xumo.com/live-guide/nbc-washington-dc-news Roku: https://therokuchannel.roku.com/watch/021707311e0b595597f97a389e0051e6/nbc-washington-dc-news Also available on Freevee, Google TV, TCL, Local Now, and Samsung TV Plus. More here: https://www.nbcwashington.com/watchlive/ Instagram: http://nbc4dc.com/3HxYkYH Threads: http://nbc4dc.com/ZYZAAHJ Facebook: http://nbc4dc.com/iD1GvRQ X: http://nbc4dc.com/APF7vQM TikTok: http://nbc4dc.com/pg5Nx67 VISIT OUR SITE: https://www.nbcwashington.com/ DOWNLOAD OUR FREE APPS: https://www.nbcwashington.com/products/ WATCH NBC4 LIVE ON AMAZON FIRE TV: https://www.nbcwashington.com/firetv/ WATCH NBC4 LIVE ON ROKU: https://www.nbcwashington.com/roku/d
    https://wn.com/15_Year_Old_Girl_Shot,_Killed_In_Southeast_DC_|_Nbc4_Washington
    Washington D.C. - City Video Guide
    5:47

    Washington D.C. - City Video Guide

    • Order:
    • Duration: 5:47
    • Uploaded Date: 17 Apr 2013
    • views: 974022
    http://www.expedia.com.au/Washington.d178318.Destination-Travel-Guides Washington D.C. is situated on the east coast of the USA, along the banks of the Potomac River. Most visitors begin at the National Mall. Zero Milestone is the proposed reference point for distances on all US maps. To the north is the White House. To the south stands the Washington Monument. The US Capitol Building, atop Capitol Hill, is the nation's seat of federal government. The Mall is also home to many of the nation's Smithsonian buildings, including the Smithsonian National Air and Space Museum. Reflecting Pool is surrounded by tributes to its heroes and founding fathers, including the Vietnam Veterans Memorial, and the Lincoln Memorial. Washington D.C.'s Capital Bikeshare system makes it easy to reach downtown neighborhoods such as DuPont Circle and Foggy Bottom. Georgetown is the oldest district in Washington D.C. Wisconsin Avenue and M Street have boutique stores and galleries. To the north is the National Cathedral, the Smithsonian National Zoo and the International Spy Museum. Just across the Potomac is Arlington National Cemetery. Find out more travel tips & information on
    https://wn.com/Washington_D.C._City_Video_Guide
    Washington, D.C. History in 5 Minutes - Animated
    5:48

    Washington, D.C. History in 5 Minutes - Animated

    • Order:
    • Duration: 5:48
    • Uploaded Date: 12 Mar 2019
    • views: 174484
    A 5-minute animated history of Washington, D.C. - The capital of the United States of America. Don't forget to check out our other animations of American History: Animated history of Halloween: https://youtu.be/uyxadwwT2lE Animated history of Easter Eggs: https://youtu.be/DiwzYdQjEsg Animated history of White House: https://youtu.be/L8W22w3ujGY Animated history of Texas: https://youtu.be/hvOxSQYq2W4 Animated history of Wall Street: https://youtu.be/hvOxSQYq2W4 Animated history of California: https://youtu.be/fjm1v_LPtkI Animated history of Washington, D.C.: https://youtu.be/3Z7GAPEt4tc Animated History of Viking: https://youtu.be/yak4JLMSN4g Animated History of Martin Luther King, Jr.: https://youtu.be/Hmw8QjLjDh0 Image Credits: Wikipedia, Pixapay, Archives.gov
    https://wn.com/Washington,_D.C._History_In_5_Minutes_Animated
    North Dakota veterans receive hero’s welcome in Washington, D.C.
    1:02

    North Dakota veterans receive hero’s welcome in Washington, D.C.

    • Order:
    • Duration: 1:02
    • Uploaded Date: 15 Apr 2024
    • views: 36
    More than 100 veterans from western North Dakota got a hero’s welcome to our nation’s capital Sunday morning. For more Local News from KFYR: https://www.kfyrtv.com/ For more YouTube Content: https://www.youtube.com/channel/UCrg4C3ro-FW8MGH_ayIUk_g
    https://wn.com/North_Dakota_Veterans_Receive_Hero’S_Welcome_In_Washington,_D.C.
    THINGS TO KNOW BEFORE YOU GO TO WASHINGTON DC
    5:56

    THINGS TO KNOW BEFORE YOU GO TO WASHINGTON DC

    • Order:
    • Duration: 5:56
    • Uploaded Date: 14 Jun 2023
    • views: 40614
    Today we share the things to know before you go to Washington DC including when to go to Washington DC and the best time to visit Washington DC. We share tips on getting to Washington DC and how to get around Washington DC, all in this Washington DC Vacation Guide. We share typical prices in Washington DC and how to save money in Washington DC, perfect for those wanting to visit Washington DC on a budget. We also share the best things to do in Washington DC, perfect for those planning a trip to Washington DC. ►► Hop on, Hop off Bus ►► https://fave.co/466pEJB ►► Nighttime Monuments Tour ►► https://bit.ly/3N4LNQ4 ►► National Mall Tour ►► https://bit.ly/42z08da Affiliates, links and resources ______________________ 🎧 MUSIC 🎧 Epidemic Sound. Try it for FREE here → https://www.epidemicsound.com/referral/ngvucq Our favourite Travel Insurance - https://bit.ly/32c2u4K​​ We recommend this drone - https://amzn.to/3vaC3Ll We recommend this camera - https://amzn.to/3GdvbmV Our Vlogging Camera - https://amzn.to/3iyvi0J Our Microphone - https://amzn.to/3VicClS Our Mic stand - https://amzn.to/2TlBzm9 Follow us everywhere _________________________ SUBSCRIBE ► http://bit.ly/CTGTV​​​​​​​​​​ SUBSCRIBE TO OUR VLOG CHANNEL ► https://bit.ly/KatieOVlogs If you have any more questions, drop them in the comments below! Read our travel guides on www.CreativeTravelGuide.com Read more about Thailand on www.ThatBangkokLife.com Read more about theme parks on www.ThemePark247.com Chapters ________________________ 00:00 THINGS TO KNOW BEFORE YOU GO TO WASHINGTON DC 00:28 BEST TIME TO VISIT WASHINGTON DC 00:56 GETTING TO WASHINGTON DC 01:46 GETTING AROUND WASHINGTON DC 02:52 TYPICAL PRICES IN WASHINGTON DC 03:43 SAVE MONEY IN WASHINGTON DC 04:28 BEST THINGS TO DO IN WASHINGTON DC ________________________ Video Attributions Creative Commons Attribution license (reuse allowed) Washington Dulles International Airport AeroTrain - Front View Ride | Jul 2011 Published by NYCentral Trainspotter https://www.youtube.com/watch?v=JRUZ4MxCMoY Landing at Washington Dulles Intl Airport on a United Airlines Boeing B777-200 | Jun 2016 Published by Thomas Woodtli https://www.youtube.com/watch?v=j-yeSoCZfoA The St. Regis Washington, D.C. Hotel - 1 Minute Story NS | Jan 2018 Published by Nurlan Shantayev https://www.youtube.com/watch?v=1j8AfB0pUvc HGI Washington DC/Georgetown Hotel Review | Mar 2020 Published by Mr. Cho - Best Tips&Tricks to Save Money on Travel https://www.youtube.com/watch?v=ilcBmW10Vro
    https://wn.com/Things_To_Know_Before_You_Go_To_Washington_DC
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Washington D.C. Vacation Travel Guide | Expedia
      5:47
      Washington D.C. Vacation Travel Guide | Expediaremove from playlist
    • WASHINGTON DC TRAVEL GUIDE: 11 Things to Know Before You Go
      31:02
      WASHINGTON DC TRAVEL GUIDE: 11 Things to Know Before You Goremove from playlist
    • TOP 10 Things to do in WASHINGTON, D.C. | DC Travel Guide
      11:27
      TOP 10 Things to do in WASHINGTON, D.C. | DC Travel Guideremove from playlist
    • The Genius Design of Washington D.C.
      8:01
      The Genius Design of Washington D.C.remove from playlist
    • 20 Essential Tips for a First Visit to Washington, DC
      13:44
      20 Essential Tips for a First Visit to Washington, DCremove from playlist
    • 15-year-old girl shot, killed in Southeast DC | NBC4 Washington
      1:54
      15-year-old girl shot, killed in Southeast DC | NBC4 Washingtonremove from playlist
    • Washington D.C. - City Video Guide
      5:47
      Washington D.C. - City Video Guideremove from playlist
    • Washington, D.C. History in 5 Minutes - Animated
      5:48
      Washington, D.C. History in 5 Minutes - Animatedremove from playlist
    • North Dakota veterans receive hero’s welcome in Washington, D.C.
      1:02
      North Dakota veterans receive hero’s welcome in Washington, D.C.remove from playlist
    • THINGS TO KNOW BEFORE YOU GO TO WASHINGTON DC
      5:56
      THINGS TO KNOW BEFORE YOU GO TO WASHINGTON DCremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Washington D.C. Vacation Travel Guide | Expedia

    Washington D.C. – Take in the many splendors of the nation’s capital. Explore the city with us and start planning a journey of your own! When ready, browse vacation packages to Washington: https://www.expedia.com/Washington.d178318.Destination-Travel-Guides Your #Washington, D.C. #vacation should start at the National Mall, where you’ll find monuments, memorials, and government buildings instead of tons of shopping. #Visit the Watergate Hotel and Kennedy Center when you stop at Foggy Bottom, then move on to Georgetown, the oldest district in D.C. It’s filled with 18th-century buildings and, of course, the university itself. If you’re feeling the need to channel your inner 007, go to the International Spy Museum, and learn about the covert operations and intelligence agencies that have shaped the world we live in. Of course, you can’t enjoy any Washington, D.C. #tour without admiring the White House, so make sure that’s on your list too. For now, we hope you enjoy watching this #travel #guide as much as we enjoyed making it. More travel information around Washington: https://www.expedia.com/Washington.dx178318 Subscribe to Expedia’s YouTube Channel for great travel videos and join the conversation on the best vacation ideas. --------- Follow us on social media: FACEBOOK: https://www.facebook.com/expedia TWITTER: https://twitter.com/Expedia INSTAGRAM: https://instagram.com/expedia/ PINTEREST: https://www.pinterest.com/expedia --------- 0:00 - Washington D.C. 0:41 - The National Mall 1:00 - Zero Milestone 1:09 - The White House and Washington Monument 1:26 - Capitol Building 1:34 - Reflecting Pool 1:48 - Vietnam Veterans Memorial 2:02 - Lincoln Memorial 2:09 - Franklin Delano Roosevelt Memorial 2:20 - Thomas Jefferson Memorial 2:30 - Smithsonian Castle 2:47 - Smithsonian National Air and Space Museum 2:59 - Newseum 3:09 - United States Botanic Garden 3:27 - DuPont Circle 3:37 - Foggy Bottom 3:50 - Georgetown 4:03 - Wisconsin Avenue and M Street 4:09 - National Cathedral 4:18 - Smithsonian National Zoo 4:27 - International Spy Museum 4:38 - Arlington National Cemetery 5:01 - Arlington House
    5:47
    Washington D.C. Vacation Travel Guide | Expedia
    Washington D.C. – Take in the many splendors of the nation’s capital. Explore the city wit...
    published: 07 Mar 2013
    Play in Full Screen
    31:02
    WASHINGTON DC TRAVEL GUIDE: 11 Things to Know Before You Go
    Everything you need to know to go to Washington DC. Washington, D.C. is the capital of th...
    published: 11 Aug 2023
    Play in Full Screen
    11:27
    TOP 10 Things to do in WASHINGTON, D.C. | DC Travel Guide
    🔥📚 Get our D.C. PDF Guide for ONLY $6.99 👉 https://gum.co/WasGD 🔥 By purchasing our travel...
    published: 14 Aug 2019
    Play in Full Screen
    8:01
    The Genius Design of Washington D.C.
    Washington D.C. is widely recognized as one of the best designed Capital Cities in the wor...
    published: 01 Apr 2023
    Play in Full Screen
    13:44
    20 Essential Tips for a First Visit to Washington, DC
    The seat of American government, bustling Washington DC is home to the touchstone by which...
    published: 17 Aug 2022
    Play in Full Screen
    1:54
    15-year-old girl shot, killed in Southeast DC | NBC4 Washington
    A community is heartbroken after a 15-year-old girl was shot and killed in the Barry Farm ...
    published: 15 Apr 2024
    Play in Full Screen
    5:47
    Washington D.C. - City Video Guide
    http://www.expedia.com.au/Washington.d178318.Destination-Travel-Guides Washington D.C. is...
    published: 17 Apr 2013
    Play in Full Screen
    5:48
    Washington, D.C. History in 5 Minutes - Animated
    A 5-minute animated history of Washington, D.C. - The capital of the United States of Amer...
    published: 12 Mar 2019
    Play in Full Screen
    1:02
    North Dakota veterans receive hero’s welcome in Washington, D.C.
    More than 100 veterans from western North Dakota got a hero’s welcome to our nation’s capi...
    published: 15 Apr 2024
    Play in Full Screen
    5:56
    THINGS TO KNOW BEFORE YOU GO TO WASHINGTON DC
    Today we share the things to know before you go to Washington DC including when to go to W...
    published: 14 Jun 2023
    Play in Full Screen

    Washington, D.C.

    Washington, D.C., formally the District of Columbia and commonly referred to as "Washington", "the District", or simply "D.C.", is the capital of the United States. The signing of the Residence Act on July 16, 1790, approved the creation of a capital district located along the Potomac River on the country's East Coast. The U.S. Constitution provided for a federal district under the exclusive jurisdiction of the Congress and the District is therefore not a part of any U.S. state.

    The states of Maryland and Virginia each donated land to form the federal district, which included the pre-existing settlements of Georgetown and Alexandria. Named in honor of George Washington, the City of Washington was founded in 1791 to serve as the new national capital. In 1846, Congress returned the land originally ceded by Virginia; in 1871, it created a single municipal government for the remaining portion of the District.

    Washington had an estimated population of 672,228 as of July 2015. Commuters from the surrounding Maryland and Virginia suburbs raise the city's population to more than one million during the workweek. The Washington metropolitan area, of which the District is a part, has a population of over 6 million, the seventh-largest metropolitan statistical area in the country.

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

    Edit

    Trump arriving in Washington for inaugural celebrations to mark his return to power

    Elko Daily Free Press 19 Jan 2025
    Donald Trump was scheduled to return to Washington on Saturday, four years after he departed the city under the shadow of an attack by his supporters on the Capitol ... .
    Edit

    Thousands rally in Washington against Trump

    Marietta Daily Journal 19 Jan 2025
    Thousands of demonstrators marched through the streets of Washington on Saturday in protest at the policies of Donald Trump and his Republican Party, two days before the billionaire reclaims the Oval Office ... .
    Edit

    Trump heads to Washington for inaugural celebrations to mark his return to power

    Goshen News 19 Jan 2025
    Donald Trump is headed back to Washington to kick off days of pageantry heralding his second inauguration as president. Trump departed from his adopted home state of Florida on Saturday afternoon with his wife Melania and son Barron an fly ... .
    Edit

    Socialism Saturday: People's March Socialists Protest In Washington DC

    Rumble 19 Jan 2025
    Go to the source via the article link to view the video or click the video icon ....
    Edit

    Ex Washington Gov. Slams GOP For Threatening to Deny Aid to California

    The Daily Beast 19 Jan 2025
    A former governor of Washington has ripped into the GOP for suggesting there should be strings attached to aid in the wake of some of the most ...
    Edit

    Washington Capitals Quarter-Century Teams unveiled

    NHL 19 Jan 2025
    Ovechkin, Oshie, Holtby highlight first-team selections .
    Edit

    People's March in Washington draws thousands ahead of inauguration

    Deutsche Welle 19 Jan 2025
    Protesters represented progressive views on causes, including immigration, climate change and abortion rights. The march was the successor of the "Women's March" that took place ahead of Trump's first inauguration ... .
    Edit

    Thousands gather in Washington to protest Trump inauguration

    FBC News 19 Jan 2025
    Thousands of people gathered in Washington on Saturday to protest President-elect ...

    Most Viewed

    ×