- published: 05 Jul 2022
- views: 1672451
'+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; })); }); -->
Dame Julia "Julie" Elizabeth Andrews, DBE, (née Wells; born 1 October 1935) is an English film and stage actress, singer, author, theatre director and dancer. Andrews, a former child actress and singer, appeared on the West End in 1948, and made her Broadway debut in a 1954 production of The Boy Friend. She rose to prominence starring in musicals such as My Fair Lady and Camelot, both of which earned her Tony Award nominations. In 1957, she appeared on television with the title role in the musical Cinderella, which was seen by over 100 million viewers.
She made her feature film debut in Mary Poppins (1964), with her performance in the title role winning her the Academy Award for Best Actress. She received her second Oscar nomination for The Sound of Music (1965), playing Maria, and won the Golden Globe Award for Best Actress in a Musical. Adjusted for inflation, the latter film is the third-highest grossing film of all time. Between 1964 and 1967, she also had box office successes with, The Americanization of Emily, receiving a nomination for the BAFTA Award for Best British Actress in a Leading Role, Hawaii, Alfred Hitchcock's Torn Curtain, and Thoroughly Modern Millie, making her the most successful film star in the world at the time.
Paul McGrane is an Irish Gaelic footballer who played for Armagh in the 1990s and 2000s. He won an All-Ireland Senior Football Championship medal, seven Ulster Championships and a National League title with the county. He also won two All Star awards.
McGrane plays club football for Ballyhegan Davitts.
McGrane is a midfielder. He is known as one of Armagh's best ever players. In 2009 to mark the 125th anniversary of the Gaelic Athletic Association he was named by The Irish News as one of the all-time best 125 footballers from Ulster.
In 1992 McGrane won the Ulster Minor Football League and Ulster Minor Football Championship with the Armagh Minor team. Armagh finished runners-up to Meath in that year's All-Ireland Minor final. He was captain of the Minor team that year.
McGrane made his Senior inter-county Championship debut for Armagh against Fermanagh in May 1993. He won his first Ulster Senior Football Championship medal with the county in 1999 - the county's first Ulster Championship in 17 years. Armagh also defended their Ulster title the following year.
A boyfriend is a regular male companion in a romantic or sexual relationship.
Boyfriend(s) or Boy Friend may also refer to:
The Boy Friend is a 1971 British-American musical comedy film directed by Ken Russell and starring Twiggy, Christopher Gable, Tommy Tune, and Max Adrian with an uncredited appearance by Glenda Jackson. It is an adaptation of the musical The Boy Friend by Sandy Wilson. It was released on DVD on April 12, 2011.
The plot exists on three levels.
First there is the frame story where in the south of England in the 1920s a struggling theatrical troupe is performing a musical about romantic intrigues at a finishing school for young women in the south of France. To ongoing backstage dramas and audiences smaller in number than the cast, two extra ingredients arrive: a famous Hollywood film producer turns up to see the show, and Polly, the mousy assistant stage manager, is forced to go on when the leading lady breaks a leg. As Polly struggles to keep her cool while acting opposite the male lead she secretly loves, the rest of the company backstab each other trying to impress the impresario.
The Boy Friend (sometimes misspelled The Boyfriend) is a musical by Sandy Wilson. The musical's original 1954 London production ran for 2,078 performances, making it briefly the third-longest running musical in West End or Broadway history (after Chu Chin Chow and Oklahoma!) until these were all surpassed by Salad Days. This musical marked Julie Andrews' American stage debut.
Set in the carefree world of the French Riviera in the Roaring Twenties, The Boy Friend is a comic pastiche of 1920s shows (in particular early Rodgers and Hart musicals such as The Girl Friend). Its relatively small cast and low cost of production makes it a continuing popular choice for amateur and student groups.
Sandy Wilson wrote a sequel to The Boy Friend. Set ten years later, and, appropriately, a pastiche of 1930s musicals (in particular those of Cole Porter) it was titled Divorce Me, Darling! and ran for 91 performances at London's old Globe Theatre in 1965. It is sometimes revived as a "double bill" with The Boy Friend.
Julie Andrews takes us through her illustrious career, including her roles in 'The Boyfriend,' 'My Fair Lady,' 'Mary Poppins,' 'Thoroughly Modern Millie,' 'Victor/Victoria,' 'Duet For One,' 'The Princess Diaries' and 'Minions: The Rise of Gru.' 00:00 Intro 00:29 The Boyfriend 02:20 My Fair Lady 03:56 Mary Poppins 06:23 The Sound of Music 07:53 Thoroughly Modern Millie 09:08 Victor/Victoria 11:42 Duet For One 13:15 The Princess Diaries 14:25 Minions: The Rise of Gru Director: Adam Lance Garcia Director of Photography: Bradley Wickham Editor: Michael Suyeda Assistant Editor: Billy Ward Producer: Efrat Kashai Line Producer: Jen Santos Associate Producer: Jessica Gordon Production Manager: Marilee Hodge Production Coordinator: Jamal Colvin Gaffer: Devan Davies-Wood Cam...
Julie Andrews reveals the complicated and dirty way they filmed that iconic meadow scene in The Sound of Music. Subscribe NOW to The Tonight Show Starring Jimmy Fallon: http://bit.ly/1nwT1aN Watch The Tonight Show Starring Jimmy Fallon Weeknights 11:35/10:35c Get more Jimmy Fallon: Follow Jimmy: http://Twitter.com/JimmyFallon Like Jimmy: https://Facebook.com/JimmyFallon Get more The Tonight Show Starring Jimmy Fallon: Follow The Tonight Show: http://Twitter.com/FallonTonight Like The Tonight Show: https://Facebook.com/FallonTonight The Tonight Show Tumblr: http://fallontonight.tumblr.com/ Get more NBC: NBC YouTube: http://bit.ly/1dM1qBH Like NBC: http://Facebook.com/NBC Follow NBC: http://Twitter.com/NBC NBC Tumblr: http://nbctv.tumblr.com/ The Tonight Show Starring Jimmy Fallon fe...
Julie Andrews and some of the former cast members of Von Trapp children (Angela Cartwright, Kym Karath, Debbie Turner, Duane Chase, and Nicholas Hammond), sing along with the audience to ‘Do-Re-Mi’ from The Sound of Music. #TNT #JulieAndrews #AFIAward SUBSCRIBE: http://bit.ly/SubscribeTNT Download the TNT App: http://bit.ly/1GcZDJb About the American Film Institute (AFI) The American Film Institute (AFI) is a nonprofit organization with a mandate to champion the moving image as an art form. Established in 1967, AFI launched the first comprehensive history of American film and sparked the movement for film preservation in the United States. In 1969, AFI opened the doors of the AFI Conservatory, a graduate-level program to train narrative filmmakers. AFI’s enduring traditions include the ...
Sidney Poitier presenting Julie Andrews the Oscar® for Best Actress for her performance in "Mary Poppins" at the 37th Academy Awards® in 1965. Introduced by Bob Hope. Watch more of the 1965 Oscars: https://www.youtube.com/playlist?list=PLJ8RjvesnvDP4YEe-_yhIRB3yickk9A3y Subscribe for more #Oscars videos ►► http://osca.rs/subscribeyt Julie Andrews Wins Best Actress | 37th Oscars (1965) #JulieAndrews #BestActress #MaryPoppins #AcademyAwards #SidneyPoitier
Andy Cohen asks Julie Andrews some juicy bits about her new memoir including if she and Audrey Hepburn competed and talks about suing tabloids and offers advice to Meghan Markle. ►► Subscribe To WWHL: http://bravo.ly/WWHLSub Watch WWHL Sun-Thu 11/10c: WWHL Website: https://www.bravotv.com/watch-what-happens-live Follow WWHL: https://twitter.com/BravoWWHL Like WWHL: https://www.facebook.com/WatchWhatHappensLive/ WWHL Tumblr: http://bravowwhl.tumblr.com/ 'Watch What Happens: Live' is Bravo's late-night, interactive talk show that features guests from the world of entertainment, politics, and pop culture. Hosted by Andy Cohen, the series includes lively debates on everything from fashion, the latest on everyone's favorite Bravolebrities, and what celebrity is making headlines that week. Pas...
Dame Julie Andrews & Reese Witherspoon talk about the effect on winning an Oscar, and Jennifer Anniston talks about being warned of the fame that would come with Friends. #TheGNShow #TheGrahamNortonShow #GrahamNorton Follow us! Facebook - https://www.facebook.com/thegrahamnortonshow/?ref=page_internal Instagram - https://www.instagram.com/thegrahamnortonshowofficial/ Twitter - https://twitter.com/TheGNShowFollow us here: Facebook: https://www.facebook.com/thegrahamnortonshow/ Instagram: https://www.instagram.com/thegrahamnortonshowofficial/ Twitter: https://twitter.com/TheGNShow TikTok: https://www.tiktok.com/@thegnshow Snapchat: https://www.snapchat.com/discover/The_Graham_Norton_Show/3773416663
"A Spoonful Of Sugar" is a song from "Mary Poppins", the 1964 musical motion picture. It is an uptempo song sung by Julie Andrews instructing the two children to clean their room. But even though the task is daunting, with a good attitude, it can still be fun.
A 13-year-old Julie Andrews ('Mary Poppins', 'The Sound of Music') sings the British National Anthem in the presence of King George VI and Queen Elizabeth (The Queen Mother) at the 1948 Royal Command Performance at London's Palladium. FILM ID 2749.03 For Archive Licensing Enquiries Visit: https://goo.gl/W4hZBv Explore Our Online Channel For FULL Documentaries, Fascinating Interviews & Classic Movies: https://goo.gl/7dVe8r #BritishPathé #History #Royals #King #JulieAndrews #Celebrity Subscribe to the British Pathé YT Channel: https://goo.gl/hV1nkf Julie Andrews (Aged 13) Sings for King George VI in 1948 [HD]. Julie Andrews sings the British National Anthem at the 1948 Royal Command Performance at London's Palladium. She runs on in front of Danny Kaye wearing a white A-frame dress an...
Element Dance Arts, Cambridge Celebration of the Arts, Cambridge, Ontario Supercalifragilisticexpialidocious - From "Mary Poppins" Soundtrack - Julie Andrews, Dick Van Dyke, The Pearlie Chorus Element Dance Arts https://elementdancearts.com/
Julie Andrews meets the real Maria von Trapp from the 45th anniversary Blu-ray of THE SOUND OF MUSIC. Originally from The Julie Andrews Hour. The 1965 film The Sound of Music is produced and directed by Robert Wise, and starring Julie Andrews and Christopher Plummer, with Richard Haydn and Eleanor Parker. The film is an adaptation of the 1959 Broadway musical of the same name, composed by Richard Rodgers with lyrics by Oscar Hammerstein II. The film's screenplay was written by Ernest Lehman, adapted from the stage musical's book by Lindsay and Crouse. Based on the memoir The Story of the Trapp Family Singers by Maria von Trapp, the film is about a young Austrian woman studying to become a nun in Salzburg in 1938 who is sent to the villa of a retired naval officer and widower to be governe...
Armagh became the first county to complete a hat-trick of Ulster football titles since 1961 by beating Donegal by three points at Croke Park and it was this crucial cracker of a goal by Paul McGrane that edged a tight game
Paul McGrane is a gentleman and he hardly touches McGuigan lol. Poor Brian Mallon ends up getting booked for it!
PJ Nolan Academy of Champions Snooker Player Paul McGrane Training in Ireland with PJ More Videos @ www.147academy.com
Paul McGrane, Albert Stillman Arr D. Aukseliene - Juke Box Saturday Night Youth Choir Kivi (Lituania) Conductor Danguole Aukseliene Seghizzi
ulster final
Dodo Modern Poets at the King and Queen, London20/9/2018: Paul McGrane 2
District 2 Class 3A track
Paul McCrane wins the Emmy Award for "Outstanding Guest Actor in a Drama Series" for playing Josh Peyton on Season 1 of Harry's Law. The Creative Arts ceremony was on September 10, 2011.
Mark E Smith Tribute Night, Poetry Cafe,. 12/02/2018
Dodo Modern Poets at the King and Queen, London20/9/2018: Paul McGrane
Dame Julia "Julie" Elizabeth Andrews, DBE, (née Wells; born 1 October 1935) is an English film and stage actress, singer, author, theatre director and dancer. Andrews, a former child actress and singer, appeared on the West End in 1948, and made her Broadway debut in a 1954 production of The Boy Friend. She rose to prominence starring in musicals such as My Fair Lady and Camelot, both of which earned her Tony Award nominations. In 1957, she appeared on television with the title role in the musical Cinderella, which was seen by over 100 million viewers.
She made her feature film debut in Mary Poppins (1964), with her performance in the title role winning her the Academy Award for Best Actress. She received her second Oscar nomination for The Sound of Music (1965), playing Maria, and won the Golden Globe Award for Best Actress in a Musical. Adjusted for inflation, the latter film is the third-highest grossing film of all time. Between 1964 and 1967, she also had box office successes with, The Americanization of Emily, receiving a nomination for the BAFTA Award for Best British Actress in a Leading Role, Hawaii, Alfred Hitchcock's Torn Curtain, and Thoroughly Modern Millie, making her the most successful film star in the world at the time.
Hark the herald angels sing
"Glory to the newborn King!
Peace on earth and mercy mild
God and sinners reconciled"
Joyful, all ye nations rise
Join the triumph of the skies
With the angelic host proclaim:
"Christ is born in Bethlehem"
Hark! The herald angels sing
"Glory to the newborn King!"
Joyful, all ye nations rise
Join the triumph of the skies
With the angelic host proclaim:
"Christ is born in Bethlehem"
Hark! The herald angels sing