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

Capitol

A capitol is a building in which a legislature meets, including:

  • United States Capitol in Washington, D.C.
  • Numerous US state and territorial capitols
  • Capitolio Nacional in Bogotá, Colombia
  • Capitolio Federal in Caracas, Venezuela
  • El Capitolio in Havana, Cuba
  • Capitol may also refer to:

  • Capitol (board game), a Roman-themed board game
  • Capitol (The Hunger Games trilogy), a fictional city in The Hunger Games novels
  • Capitol (TV series), a U.S. soap opera
  • Capitole de Toulouse, a historic building in Toulouse, France, now used as a municipal and public-arts center
  • The capitouls of Toulouse, the city's former chief magistrates
  • Capitol Air (originally known as: Capitol International Airways), was a charter airline from the United States, which was operational from 1946 to 1982
  • Capitol College, a private, non-profit, and non-sectarian college located just south of Laurel, Maryland
  • Capitol Corridor, an Amtrak railroad corridor
  • Capitol Records, a U.S. record label
  • Capitol (Caltrain station)

    Capitol Station is a Caltrain station located in San Jose, California. This station is only served during peak commute hours. Northbound trains only travel in the morning commute and southbound trains only travel in the evening commute.

    Capitol Station is located across from the intersection of Monterey Highway(CA 82) and Fehren Drive. The station parking lot is on the northeast corner of Monterey Highway and Fehren Drive and a pedestrian crosswalk spans from the parking lot to the station.

    Platforms and tracks

    Station Amenities

  • Caltrain Ticket Machines
  • 8-Ride Ticket Validators
  • References

    External links

  • Media related to Capitol (Caltrain station) at Wikimedia Commons
  • Station information (Caltrain)
  • Station information (Transit Unlimited)

  • Fictional universe of The Hunger Games

    The Hunger Games universe is a fictional world appearing in The Hunger Games trilogy written by Suzanne Collins.

    Panem

    The series takes place at an unspecified point in the future. By this time, the nation of Panem rules North America in place of the governments of Canada, the United States, and Mexico, which failed to survive.

    Panem's seat of power is a superficially utopian city called the Capitol located in the Rocky Mountains. Outside of the Capitol, the nation is divided into twelve districts under the hegemony of a totalitarian dictatorship, headed by the tyrannical President Coriolanus Snow. A thirteenth district had existed but was destroyed by the Capitol seventy-five years prior to the beginning of The Hunger Games during a period known as the Dark Days. In Mockingjay, it is revealed that District 13 retreated underground after the Dark Days. This was the main source of the rebellion that happened in Catching Fire and Mockingjay. The Capitol developed the Hunger Games as an annual event to punish the citizens of Panem for their rebellion and to remind citizens of consequences for rebelling against the absolute power of the Capitol. The country of Panem, though occupying the whole of North America, isn't as big as the current North America.

    Podcasts:

    • RFK Jr., Gabbard back on Capitol Hill for confirmation support

      Robert F. Kennedy Jr. and Tulsi Gabbard are back on Capitol Hill to lobby for support in their confirmation process to fill top posts in President-elect Donald Trump's second term. CBS News' Allison Novelo reports. CBS News 24/7 is the premier anchored streaming news service from CBS News and Stations that is available free to everyone with access to the internet and is the destination for breaking news, live events, original reporting and storytelling, and programs from CBS News and Stations' top anchors and correspondents working locally, nationally and around the globe. It is available on more than 30 platforms across mobile, desktop and connected TVs for free, as well as CBSNews.com and Paramount+ and live in 91 countries. Subscribe to the CBS News YouTube channel: https://youtube.co...

      published: 18 Dec 2024
    • Liberia Capital Fire LIVE | Fire Breaks Out At Liberian Parliament After Protests | Monrovia Capitol

      A massive fire tore through Liberia's parliament building in Monrovia on Wednesday, following tense protests over prolonged political deadlock. Authorities have contained the blaze and launched an investigation. ECOWAS and the US embassy condemned Tuesday's violence, urging calm in the nation. #LiberiaFire #Monrovia #ParliamentBuildingFire #ECOWAS #LiberiaNews #PoliticalDeadlock #WestAfrica #breakingnews Hindustan Times Videos brings all the News for the Global Indian under one umbrella. We break down news from across the globe from the unique lens of a Rising India. Tune in for Explainers, Opinions, Analysis and a 360 degree view of big events in India and the World which impact your present and future. Follow the Hindustan Times Channel on WhatsApp for News Alerts, Top Stories an...

      published: 19 Dec 2024
    • Shots fired inside US Capitol

      Chaos inside the capitol caught on camera as a shot is fired inside the building

      published: 06 Jan 2021
    • Capitol Hill funding fight: 'Government under the big top'

      David Jolly, Basil Smikle and Philip Bump join Stephanie Ruhle to discuss the chaos on the hill. With 48-hours until government funding runs out, President-elect Donald Trump is opposing the bipartisan funding deal on the table and alternate "clean" continuing resolution. » Subscribe to MSNBC: https://www.youtube.com/msnbc » Subscribe to MSNBC on TikTok https://www.tiktok.com/@msnbc » Subscribe to MSNBC on Instagram https://www.instagram.com/msnbc Download our new MSNBC app for the latest breaking news and daily headlines at a glance: https://www.msnbc.com/information/download-msnbc-app-n1241692 Follow MSNBC Show Blogs MaddowBlog: https://www.msnbc.com/maddowblog ReidOut Blog: https://www.msnbc.com/reidoutblog MSNBC delivers breaking news, in-depth analysis of politics headlines, as ...

      published: 19 Dec 2024
    • Liberia Capital Fire LIVE | Liberia Capital Building Fire | Monrovia Capitol Building Fire | N18G

      Residents were shocked and there are now pressing concerns over the source of the big fire that destroyed Liberia's Capitol rotunda on Wednesday morning, sending thick black smoke and flames soaring into the sky. #liberia #capitol #monrovia #news18live #englishnewslive n18oc_live n18oc_world News18 Mobile App - https://onelink.to/desc-youtube

      published: 19 Dec 2024
    • Capitol Hill headlines: Funding deal dead, Gaetz responds to ethics report vote | LiveNOW from FOX

      Major news from Capitol Hill tonight. The 1,547-page interim spending bill to avoid a government shutdown is effectively dead. House Speaker Mike Johnson (R-La.) has all but yanked the plan off the floor after President-elect Trump, Vice President-elect Vance and Elon Musk torched the package to avoid a government shutdown this weekend and fund the government through March 14. In other news, the House Ethics Committee has decided to release its report on former Rep. Matt Gaetz. He has consistently denied any accusations of wrongdoing, and an earlier federal investigation into the allegations ended without charges against him. LiveNOW's Andrew Craft spoke about all of the storylines in Congress with Washington Examiner reporter Cami Mondeaux. Subscribe to LiveNOW from FOX! https://www....

      published: 19 Dec 2024
    • Washington DC - US Capitol for Children | Social Studies for Kids | Kids Academy

      Thousands of parents and educators are turning to the kids’ learning app that makes real learning truly fun. Try Kids Academy with 3-day FREE TRIAL! https://bit.ly/2GuGyL2 Washington DC is an exciting place to learn about. This city is not only a place where important decisions and laws are made but a place that is rich in American history. Opportunities for learning abound with the numerous museums, landmarks and monuments that are available to visit—many of which you can visit for free! This video from Kid’s Academy introduces students to different buildings and attractions in America’s capital city. Join two young travelers on a trip that highlights many things to see and do in this great city. The video tells viewers that Washington DC is the nation’s capital and this is where th...

      published: 04 Feb 2020
    • The History of the United States Capitol

      The United States Capitol in Washington, D.C., is among the most architecturally impressive and symbolically important buildings in the world. It has housed the meeting chambers of the Senate and the House of Representatives for almost two centuries. Since the laying of the cornerstone in 1793, the U.S. Capitol has been built, burnt, rebuilt, extended and restored; today, it stands as a monument not only to its builders but also to the American people and their government. Learn more at https://www.aoc.gov/explore-capitol-campus/buildings-grounds/capitol-building. ----- ABOUT US The Architect of the Capitol (AOC) is rooted in a tradition of unique craftsmanship and ingenuity. Tracing its beginnings to the laying of the #USCapitol cornerstone in 1793, the AOC is responsible for the opera...

      published: 27 Oct 2010
    • Curren$y - Capitol (feat. 2 Chainz)

      Directed, Shot & Edited by CJ Wallis, @fortyfps © 2012 WMG The Stoned Immaculate is in stores and available on iTunes now! Buy your copy here: http://smarturl.it/TSIAlbumYT

      published: 06 Jun 2012
    • Inside the U.S. Capitol at the height of the siege | Visual Forensics

      At 2:12 p.m. on Jan. 6, supporters of President Trump began climbing through a window they had smashed on the northwest side of the U.S. Capitol. “Go! Go! Go!” someone shouted as the rioters, some in military gear, streamed in. It was the start of the most serious attack on the Capitol since the War of 1812. The mob coursed through the building, enraged that Congress was preparing to make Trump’s electoral defeat official. “Drag them out! … Hang them out!” rioters yelled at one point, as they gathered near the House chamber. Officials in the House and Senate secured the doors of their respective chambers, but lawmakers were soon forced to retreat to undisclosed locations. Five people died on the grounds that day, including a Capitol police officer. In all, more than 50 officers were injur...

      published: 17 Jan 2021
    RFK Jr., Gabbard back on Capitol Hill for confirmation support
    3:02

    RFK Jr., Gabbard back on Capitol Hill for confirmation support

    • Order:
    • Duration: 3:02
    • Uploaded Date: 18 Dec 2024
    • views: 5722
    Robert F. Kennedy Jr. and Tulsi Gabbard are back on Capitol Hill to lobby for support in their confirmation process to fill top posts in President-elect Donald Trump's second term. CBS News' Allison Novelo reports. CBS News 24/7 is the premier anchored streaming news service from CBS News and Stations that is available free to everyone with access to the internet and is the destination for breaking news, live events, original reporting and storytelling, and programs from CBS News and Stations' top anchors and correspondents working locally, nationally and around the globe. It is available on more than 30 platforms across mobile, desktop and connected TVs for free, as well as CBSNews.com and Paramount+ and live in 91 countries. Subscribe to the CBS News YouTube channel: https://youtube.com/cbsnews Watch CBS News 24/7: https://cbsnews.com/live/ Download the CBS News app: https://cbsnews.com/mobile/ Follow CBS News on Instagram: https://instagram.com/cbsnews/ Like CBS News on Facebook: https://facebook.com/cbsnews Follow CBS News on X: https://twitter.com/cbsnews Subscribe to our newsletters: https://cbsnews.com/newsletters/ Try Paramount+ free: https://paramountplus.com/?ftag=PPM-05-10aeh8h For video licensing inquiries, contact: licensing@veritone.com
    https://wn.com/Rfk_Jr.,_Gabbard_Back_On_Capitol_Hill_For_Confirmation_Support
    Liberia Capital Fire LIVE | Fire Breaks Out At Liberian Parliament After Protests | Monrovia Capitol
    4:43:51

    Liberia Capital Fire LIVE | Fire Breaks Out At Liberian Parliament After Protests | Monrovia Capitol

    • Order:
    • Duration: 4:43:51
    • Uploaded Date: 19 Dec 2024
    • views: 7444
    A massive fire tore through Liberia's parliament building in Monrovia on Wednesday, following tense protests over prolonged political deadlock. Authorities have contained the blaze and launched an investigation. ECOWAS and the US embassy condemned Tuesday's violence, urging calm in the nation. #LiberiaFire #Monrovia #ParliamentBuildingFire #ECOWAS #LiberiaNews #PoliticalDeadlock #WestAfrica #breakingnews Hindustan Times Videos brings all the News for the Global Indian under one umbrella. We break down news from across the globe from the unique lens of a Rising India. Tune in for Explainers, Opinions, Analysis and a 360 degree view of big events in India and the World which impact your present and future. Follow the Hindustan Times Channel on WhatsApp for News Alerts, Top Stories and Editor picks. Join Us Today - https://www.bit.ly/3PQ4kSv Subscribe to the Hindustan Times YT channel and press the bell icon to get notified when we go live. Visit our website https://www.hindustantimes.com/ Follow us on Twitter/ httweets Follow us on Facebook / hindustantimes
    https://wn.com/Liberia_Capital_Fire_Live_|_Fire_Breaks_Out_At_Liberian_Parliament_After_Protests_|_Monrovia_Capitol
    Shots fired inside US Capitol
    0:29

    Shots fired inside US Capitol

    • Order:
    • Duration: 0:29
    • Uploaded Date: 06 Jan 2021
    • views: 321748
    Chaos inside the capitol caught on camera as a shot is fired inside the building
    https://wn.com/Shots_Fired_Inside_US_Capitol
    Capitol Hill funding fight: 'Government under the big top'
    11:57

    Capitol Hill funding fight: 'Government under the big top'

    • Order:
    • Duration: 11:57
    • Uploaded Date: 19 Dec 2024
    • views: 6952
    David Jolly, Basil Smikle and Philip Bump join Stephanie Ruhle to discuss the chaos on the hill. With 48-hours until government funding runs out, President-elect Donald Trump is opposing the bipartisan funding deal on the table and alternate "clean" continuing resolution. » Subscribe to MSNBC: https://www.youtube.com/msnbc » Subscribe to MSNBC on TikTok https://www.tiktok.com/@msnbc » Subscribe to MSNBC on Instagram https://www.instagram.com/msnbc Download our new MSNBC app for the latest breaking news and daily headlines at a glance: https://www.msnbc.com/information/download-msnbc-app-n1241692 Follow MSNBC Show Blogs MaddowBlog: https://www.msnbc.com/maddowblog ReidOut Blog: https://www.msnbc.com/reidoutblog MSNBC delivers breaking news, in-depth analysis of politics headlines, as well as commentary and informed perspectives. Find video clips and segments from The Rachel Maddow Show, Morning Joe, The Beat with Ari Melber, Deadline: White House, The ReidOut, All In, Last Word, 11th Hour, and Alex Wagner who brings her breadth of reporting experience to MSNBC primetime. Watch “Alex Wagner Tonight” Tuesday through Friday at 9pm Eastern. Connect with MSNBC Online Visit msnbc.com: https://www.msnbc.com/ Subscribe to the MSNBC Daily Newsletter: https://link.msnbc.com/join/5ck/msnbc-daily-signup #MSNBC #Trump #governmentshutdown
    https://wn.com/Capitol_Hill_Funding_Fight_'Government_Under_The_Big_Top'
    Liberia Capital Fire LIVE | Liberia Capital Building Fire | Monrovia Capitol Building Fire | N18G
    11:54:59

    Liberia Capital Fire LIVE | Liberia Capital Building Fire | Monrovia Capitol Building Fire | N18G

    • Order:
    • Duration: 11:54:59
    • Uploaded Date: 19 Dec 2024
    • views: 44444
    Residents were shocked and there are now pressing concerns over the source of the big fire that destroyed Liberia's Capitol rotunda on Wednesday morning, sending thick black smoke and flames soaring into the sky. #liberia #capitol #monrovia #news18live #englishnewslive n18oc_live n18oc_world News18 Mobile App - https://onelink.to/desc-youtube
    https://wn.com/Liberia_Capital_Fire_Live_|_Liberia_Capital_Building_Fire_|_Monrovia_Capitol_Building_Fire_|_N18G
    Capitol Hill headlines: Funding deal dead, Gaetz responds to ethics report vote | LiveNOW from FOX
    16:37

    Capitol Hill headlines: Funding deal dead, Gaetz responds to ethics report vote | LiveNOW from FOX

    • Order:
    • Duration: 16:37
    • Uploaded Date: 19 Dec 2024
    • views: 29501
    Major news from Capitol Hill tonight. The 1,547-page interim spending bill to avoid a government shutdown is effectively dead. House Speaker Mike Johnson (R-La.) has all but yanked the plan off the floor after President-elect Trump, Vice President-elect Vance and Elon Musk torched the package to avoid a government shutdown this weekend and fund the government through March 14. In other news, the House Ethics Committee has decided to release its report on former Rep. Matt Gaetz. He has consistently denied any accusations of wrongdoing, and an earlier federal investigation into the allegations ended without charges against him. LiveNOW's Andrew Craft spoke about all of the storylines in Congress with Washington Examiner reporter Cami Mondeaux. Subscribe to LiveNOW from FOX! https://www.youtube.com/livenowfox?sub_confirmation=1 Where to watch LiveNOW from FOX: https://www.livenowfox.com/ Follow us @LiveNOWFOX on Twitter: https://twitter.com/livenowfox Raw and unfiltered. Watch a non-stop stream of breaking news, live events and stories across the nation. Limited commentary. No opinion. Experience LiveNOW from FOX.
    https://wn.com/Capitol_Hill_Headlines_Funding_Deal_Dead,_Gaetz_Responds_To_Ethics_Report_Vote_|_Livenow_From_Fox
    Washington DC - US Capitol for Children | Social Studies for Kids | Kids Academy
    5:04

    Washington DC - US Capitol for Children | Social Studies for Kids | Kids Academy

    • Order:
    • Duration: 5:04
    • Uploaded Date: 04 Feb 2020
    • views: 426099
    Thousands of parents and educators are turning to the kids’ learning app that makes real learning truly fun. Try Kids Academy with 3-day FREE TRIAL! https://bit.ly/2GuGyL2 Washington DC is an exciting place to learn about. This city is not only a place where important decisions and laws are made but a place that is rich in American history. Opportunities for learning abound with the numerous museums, landmarks and monuments that are available to visit—many of which you can visit for free! This video from Kid’s Academy introduces students to different buildings and attractions in America’s capital city. Join two young travelers on a trip that highlights many things to see and do in this great city. The video tells viewers that Washington DC is the nation’s capital and this is where the President of the United States lives and works. Students learn that this city is the home of the United States government where laws are made. The young travelers visit the Washington Monument and from the top they view the White House, The U.S. Capitol Building, the Thomas Jefferson Memorial and the Abraham Lincoln Memorial. Students hear a brief description of each landmark. For example, students learn the Thomas Jefferson was one of the authors of the Declaration of Independence and Abraham Lincoln signed the Emancipation Proclamation. Students learn about the Pentagon and its purpose as well as the National Zoo. But the fun doesn’t stop there! The video also introduces children to the National Museum of Natural History and the National Air and Space Museum. Washington D.C is an exciting city with so many things to do and see. This video about Washington DC for kids is a great resource for students studying about the U.S capital and for teachers to use in social studies classrooms. Students learn about many of the more famous attractions and landmarks and this will surely encourage further exploration and study of this topic. ***** Subscribe to our channel: https://goo.gl/iG2Bdr Connect with us on : Facebook: https://www.facebook.com/KidsAcademyC... Twitter: https://twitter.com/KidsAcademyCo Install for free our Kids Academy Talented and Gifted Program for kids aged 2-10: App Store: https://smart.link/59833db06a6b8 Google Play: https://smart.link/5a1bea3272481 Our website: https://www.kidsacademy.mobi/
    https://wn.com/Washington_DC_US_Capitol_For_Children_|_Social_Studies_For_Kids_|_Kids_Academy
    The History of the United States Capitol
    5:01

    The History of the United States Capitol

    • Order:
    • Duration: 5:01
    • Uploaded Date: 27 Oct 2010
    • views: 655363
    The United States Capitol in Washington, D.C., is among the most architecturally impressive and symbolically important buildings in the world. It has housed the meeting chambers of the Senate and the House of Representatives for almost two centuries. Since the laying of the cornerstone in 1793, the U.S. Capitol has been built, burnt, rebuilt, extended and restored; today, it stands as a monument not only to its builders but also to the American people and their government. Learn more at https://www.aoc.gov/explore-capitol-campus/buildings-grounds/capitol-building. ----- ABOUT US The Architect of the Capitol (AOC) is rooted in a tradition of unique craftsmanship and ingenuity. Tracing its beginnings to the laying of the #USCapitol cornerstone in 1793, the AOC is responsible for the operations and care of more than 18.4 million square feet of facilities, 570 acres of grounds and thousands of works of art. The Capitol campus is home to 30,000 daily occupants and hosts more than 3 million visitors annually. Today, there are more than 2,000 AOC employees serving around the clock in diverse roles to maintain and preserve the buildings and grounds. Iconic landmarks under our care include the U.S. Capitol, Capitol Grounds, Capitol Visitor Center (@visitthecapitol), House office buildings, Library of Congress, Senate office buildings, Supreme Court buildings and @UnitedStatesBotanicGarden. ----- JOIN OUR TEAM Architect of the Capitol job opportunities are listed at https://www.aoc.gov/jobs. FOLLOW US Facebook: https://facebook.com/architectofthecapitol Instagram: https://instagram.com/uscapitol LinkedIn: https://linkedin.com/company/architect-of-the-capitol 𝕏: https://x.com/uscapitol
    https://wn.com/The_History_Of_The_United_States_Capitol
    Curren$y - Capitol (feat. 2 Chainz)
    5:15

    Curren$y - Capitol (feat. 2 Chainz)

    • Order:
    • Duration: 5:15
    • Uploaded Date: 06 Jun 2012
    • views: 8790263
    Directed, Shot & Edited by CJ Wallis, @fortyfps © 2012 WMG The Stoned Immaculate is in stores and available on iTunes now! Buy your copy here: http://smarturl.it/TSIAlbumYT
    https://wn.com/Curren_Y_Capitol_(Feat._2_Chainz)
    Inside the U.S. Capitol at the height of the siege | Visual Forensics
    14:28

    Inside the U.S. Capitol at the height of the siege | Visual Forensics

    • Order:
    • Duration: 14:28
    • Uploaded Date: 17 Jan 2021
    • views: 5440403
    At 2:12 p.m. on Jan. 6, supporters of President Trump began climbing through a window they had smashed on the northwest side of the U.S. Capitol. “Go! Go! Go!” someone shouted as the rioters, some in military gear, streamed in. It was the start of the most serious attack on the Capitol since the War of 1812. The mob coursed through the building, enraged that Congress was preparing to make Trump’s electoral defeat official. “Drag them out! … Hang them out!” rioters yelled at one point, as they gathered near the House chamber. Officials in the House and Senate secured the doors of their respective chambers, but lawmakers were soon forced to retreat to undisclosed locations. Five people died on the grounds that day, including a Capitol police officer. In all, more than 50 officers were injured. To reconstruct the pandemonium inside the Capitol, The Washington Post examined text messages, photos and hundreds of videos, some of which were exclusively obtained. By synchronizing the footage and locating some of the camera angles within a digital 3-D model of the building, The Post was able to map the rioters’ movements and assess how close they came to lawmakers — in some cases feet apart or separated only by a handful of vastly outnumbered police officers. Subscribe to The Washington Post on YouTube: https://wapo.st/2QOdcqK Follow us: Twitter: https://twitter.com/washingtonpost Instagram: https://www.instagram.com/washingtonp... Facebook: https://www.facebook.com/washingtonpost #WashingtonPost #VisualForensics #CapitolRiot
    https://wn.com/Inside_The_U.S._Capitol_At_The_Height_Of_The_Siege_|_Visual_Forensics
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • RFK Jr., Gabbard back on Capitol Hill for confirmation support
      3:02
      RFK Jr., Gabbard back on Capitol Hill for confirmation supportremove from playlist
    • Liberia Capital Fire LIVE | Fire Breaks Out At Liberian Parliament After Protests | Monrovia Capitol
      4:43:51
      Liberia Capital Fire LIVE | Fire Breaks Out At Liberian Parliament After Protests | Monrovia Capitolremove from playlist
    • Shots fired inside US Capitol
      0:29
      Shots fired inside US Capitolremove from playlist
    • Capitol Hill funding fight: 'Government under the big top'
      11:57
      Capitol Hill funding fight: 'Government under the big top'remove from playlist
    • Liberia Capital Fire LIVE | Liberia Capital Building Fire | Monrovia Capitol Building Fire | N18G
      11:54:59
      Liberia Capital Fire LIVE | Liberia Capital Building Fire | Monrovia Capitol Building Fire | N18Gremove from playlist
    • Capitol Hill headlines: Funding deal dead, Gaetz responds to ethics report vote | LiveNOW from FOX
      16:37
      Capitol Hill headlines: Funding deal dead, Gaetz responds to ethics report vote | LiveNOW from FOXremove from playlist
    • Washington DC - US Capitol for Children | Social Studies for Kids | Kids Academy
      5:04
      Washington DC - US Capitol for Children | Social Studies for Kids | Kids Academyremove from playlist
    • The History of the United States Capitol
      5:01
      The History of the United States Capitolremove from playlist
    • Curren$y - Capitol (feat. 2 Chainz)
      5:15
      Curren$y - Capitol (feat. 2 Chainz)remove from playlist
    • Inside the U.S. Capitol at the height of the siege | Visual Forensics
      14:28
      Inside the U.S. Capitol at the height of the siege | Visual Forensicsremove from playlist
    PLAYLIST TIME:

    RFK Jr., Gabbard back on Capitol Hill for confirmation support

    Robert F. Kennedy Jr. and Tulsi Gabbard are back on Capitol Hill to lobby for support in their confirmation process to fill top posts in President-elect Donald Trump's second term. CBS News' Allison Novelo reports. CBS News 24/7 is the premier anchored streaming news service from CBS News and Stations that is available free to everyone with access to the internet and is the destination for breaking news, live events, original reporting and storytelling, and programs from CBS News and Stations' top anchors and correspondents working locally, nationally and around the globe. It is available on more than 30 platforms across mobile, desktop and connected TVs for free, as well as CBSNews.com and Paramount+ and live in 91 countries. Subscribe to the CBS News YouTube channel: https://youtube.com/cbsnews Watch CBS News 24/7: https://cbsnews.com/live/ Download the CBS News app: https://cbsnews.com/mobile/ Follow CBS News on Instagram: https://instagram.com/cbsnews/ Like CBS News on Facebook: https://facebook.com/cbsnews Follow CBS News on X: https://twitter.com/cbsnews Subscribe to our newsletters: https://cbsnews.com/newsletters/ Try Paramount+ free: https://paramountplus.com/?ftag=PPM-05-10aeh8h For video licensing inquiries, contact: licensing@veritone.com
    3:02
    RFK Jr., Gabbard back on Capitol Hill for confirmation support
    Robert F. Kennedy Jr. and Tulsi Gabbard are back on Capitol Hill to lobby for support in t...
    published: 18 Dec 2024
    Play in Full Screen
    4:43:51
    Liberia Capital Fire LIVE | Fire Breaks Out At Liberian Parliament After Protests | Monrovia Capitol
    A massive fire tore through Liberia's parliament building in Monrovia on Wednesday, follow...
    published: 19 Dec 2024
    Play in Full Screen
    0:29
    Shots fired inside US Capitol
    Chaos inside the capitol caught on camera as a shot is fired inside the building
    published: 06 Jan 2021
    Play in Full Screen
    11:57
    Capitol Hill funding fight: 'Government under the big top'
    David Jolly, Basil Smikle and Philip Bump join Stephanie Ruhle to discuss the chaos on the...
    published: 19 Dec 2024
    Play in Full Screen
    11:54:59
    Liberia Capital Fire LIVE | Liberia Capital Building Fire | Monrovia Capitol Building Fire | N18G
    Residents were shocked and there are now pressing concerns over the source of the big fire...
    published: 19 Dec 2024
    Play in Full Screen
    16:37
    Capitol Hill headlines: Funding deal dead, Gaetz responds to ethics report vote | LiveNOW from FOX
    Major news from Capitol Hill tonight. The 1,547-page interim spending bill to avoid a gove...
    published: 19 Dec 2024
    Play in Full Screen
    5:04
    Washington DC - US Capitol for Children | Social Studies for Kids | Kids Academy
    Thousands of parents and educators are turning to the kids’ learning app that makes real l...
    published: 04 Feb 2020
    Play in Full Screen
    5:01
    The History of the United States Capitol
    The United States Capitol in Washington, D.C., is among the most architecturally impressiv...
    published: 27 Oct 2010
    Play in Full Screen
    5:15
    Curren$y - Capitol (feat. 2 Chainz)
    Directed, Shot & Edited by CJ Wallis, @fortyfps © 2012 WMG The Stoned Immaculate is in st...
    published: 06 Jun 2012
    Play in Full Screen
    14:28
    Inside the U.S. Capitol at the height of the siege | Visual Forensics
    At 2:12 p.m. on Jan. 6, supporters of President Trump began climbing through a window they...
    published: 17 Jan 2021
    Play in Full Screen

    Capitol

    A capitol is a building in which a legislature meets, including:

  • United States Capitol in Washington, D.C.
  • Numerous US state and territorial capitols
  • Capitolio Nacional in Bogotá, Colombia
  • Capitolio Federal in Caracas, Venezuela
  • El Capitolio in Havana, Cuba
  • Capitol may also refer to:

  • Capitol (board game), a Roman-themed board game
  • Capitol (The Hunger Games trilogy), a fictional city in The Hunger Games novels
  • Capitol (TV series), a U.S. soap opera
  • Capitole de Toulouse, a historic building in Toulouse, France, now used as a municipal and public-arts center
  • The capitouls of Toulouse, the city's former chief magistrates
  • Capitol Air (originally known as: Capitol International Airways), was a charter airline from the United States, which was operational from 1946 to 1982
  • Capitol College, a private, non-profit, and non-sectarian college located just south of Laurel, Maryland
  • Capitol Corridor, an Amtrak railroad corridor
  • Capitol Records, a U.S. record label
  • '); } 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: capitol

    Edit

    Arkansas Tech University robotics club honored at Arkansas State Capitol

    NWA Online 12 Apr 2025
    RUSSELLVILLE -- The Arkansas Tech University robotics club received congratulatory resolutions from the Arkansas House of Representatives and the Arkansas Senate during ceremonies at the Arkansas State Capitol in Little Rock on Wednesday ... .
    Edit

    CAPITOL NOTEBOOK

    The Daily Nonpareil 12 Apr 2025
    Support for students' math proficiency passes ... .
    Edit

    Protest erupts at WA Capitol, as outraged state workers slam Ferguson over furlough plan

    Longview News-Journal 12 Apr 2025
    Hundreds of Washington state workers descended on the Capitol on Wednesday, staging a sit-in outside the governor’s office and a march to the gates of the executive mansion to protest potential furloughs amid a massive budget shortfall ....
    Edit

    This week at the Capitol: April 7-11, 2025

    The CT Mirror 12 Apr 2025
    Support trusted journalism in Connecticut. Join CT Mirror’s members today and make an impact. Become a Member Now ... To sign up for CT Politics, click here. As gouda it gets. “Cheesy, a little sweet.”. That was the review Gov ... Sen ... Sen ... Sen ... The bill, S.B.
    Edit

    Illinois kills legislature kills bill that would have expanded resentencing for youth offenders

    Herald & Review - Decatur 12 Apr 2025
    The Illinois House shot down legislation Thursday that would have allowed some people incarcerated for crimes they committed when they were under 21 to become eligible for release ... .
    Edit

    Bills addressing cannabis odor in vehicle, safe gun storage pass Illinois Senate

    Herald & Review - Decatur 12 Apr 2025
    SPRINGFIELD — Law enforcement officers would no longer be allowed to search a vehicle or detain a driver who is over age 21 based solely on the smell of burnt cannabis in the vehicle under a bill that passed Thursday ... .
    Edit

    Senate OKs police hiring reform, Sangamon County recall in response to Sonya Massey’s death

    Herald & Review - Decatur 12 Apr 2025
    SPRINGFIELD — The Sangamon County Sheriff’s Office came under intense scrutiny after an unarmed Black woman was shot and killed by a deputy in her Springfield home in July 2024 ... .
    Edit

    Sen Rachel Ventura 250410 pqh.jpg

    The Pantagraph 12 Apr 2025
    Sen. Rachel Ventura, D-Joliet, speaks on the Senate floor to urge passage of a bill barring police from seizing vehicles or detaining drivers based solely on the smell of burnt cannabis ... .
    Edit

    250410 MAH AA.jpg

    The Pantagraph 12 Apr 2025
    Rep. Theresa Mah, D-Chicago, rushes across the House floor shortly after her bill failed — a rare embarrassment for a lawmaker in the legislature’s supermajority ... .
    Edit

    Trump tariffs have Georgia businesses nervous

    The Brunswick News 12 Apr 2025
    ATLANTA — President Donald Trump’s decision on Wednesday to pause a huge hike in tariffs on dozens of countries for 90 days gave the slumping stock market a one-day bump ... .
    Edit

    Capitol Lens | Frames of mind

    Roll Call 11 Apr 2025
    Rich McCormick speaks to reporters on the ...
    Edit

    Longview man pardoned in Jan. 6 Capitol riot to challenge Moran for congressional seat

    The Marshall News Messenger 11 Apr 2025
    Saying he regrets the trauma and pain caused Jan. 6, 2021, at the U.S. Capitol and his role in the violence, pardoned rioter Ryan Nichols announced Wednesday that he will challenge Congressman Nathaniel Moran in next year's Republican primary ....
    Edit

    OIL sends delegation to Capitol

    The Norman Transcript 11 Apr 2025
    East Central University’s Oklahoma Intercollegiate Legislature group sent a delegation to the 2nd Session of the 56th Legislature in Oklahoma City. The session was held in the state capitol April 2-6, and each delegate had a unique job ... .
    ×