- published: 16 Jan 2023
- views: 15001
'+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; })); }); -->
John Shakespeare (c. 1531 – 7 September 1601) was the father of William Shakespeare. He was the son of Richard Shakespeare of Snitterfield, a farmer. He moved to Stratford-upon-Avon and married Mary Arden, with whom he had eight children, five of whom survived into adulthood. A well-to-do glover and whittawer (leather worker) by trade, Shakespeare was a dealer in hides and wool, and was elected to several municipal offices, serving as an alderman and culminating in a term as bailiff, the chief magistrate of the town council, before he fell on hard times for reasons unknown to historians. His fortunes later revived after the success of his son, and he was granted a coat of arms five years before his death, probably at the instigation and expense of his playwright son.
John Shakespeare moved to Stratford-upon-Avon in 1551, where he became a successful businessman involved in several related occupations. From 1556 to 1592, several official records identify him as a glovemaker, which was probably his primary trade, as tradition remembers him as following that trade even into his old age, but the records of his real estate purchases and legal expenses indicate an income much higher than that of a small-town tradesman. The administration of his father's estate in 1561 names him as a farmer. He inherited and leased agricultural lands and is on record as selling timber and barley. Court records also document him as a "brogger", an unlicensed—and therefore illegal—wool dealer. In addition, he bought and leased out houses. He was twice taken to court for violating the usury laws that prohibited charging interest higher than the legal limit of 10 percent.
College Girl may refer to:
College Girl (Hindi: कॉलेज गर्ल) is a 1960 Hindi black-and-white romantic family film written by K. A. Narayan and directed by T. Prakash Rao. The film starred Shammi Kapoor, Vyjayanthimala in the lead with Om Prakash, Tabassum, Nana Palsikar, Raj Mehra, Purnima, Randhir, Achala Sachdev, Leela Mishra and Mohan Choti forms an ensemble cast. The film was produced by B. L. Rawal with his own banner, Rawal Films. The film's score was composed by Shankar Jaikishan duo with lyrics provided by Rajendra Krishan, edited by Pran Mehra and was filmed by Dharam Chopra.
In India, girls from their very birth are taken for liability upon their parents; thus the mothers of the nation are looked down in their own houses. Kamala represents such afflicted Indian girlhood. She is the daughter of Judge Ram Pershad who is illiterate and has orthodox views about girls. She stands first in the Matriculation Examination and has an ardent desire for studying in college in order to become a doctor. Judge Ram Pershad is totally against college education for girls. It is his faith that any money spent on the sons alone is money well-spent merely because they are sons and will stand by him in his old age. Kamala is determined not to bow before injustice but to secure her rightful place in society. She makes an all out bid to join college with the contrivance of Dr. Ratanlal, a close friend of her father. In college she come across Shyam who helps her in many difficult situations.
College Girl is a 1990 Bollywood movie starring Amita Nangia, Pankaj Berry, Veerendra Singh, Pramod Moutho, Ajit Vachani, Sudhir Pandey, Vidyashree and Rajani Bala. The movie was directed by Surendra Gupta.
Madhuri, Vicky and Akash study together in college. Akash, whose father is a minister, tries to woo her but she falls for Akash. Vicky introduces her to drugs through another girl. She becomes an addict. Akash contests against Vicky in the student elections and wins. Furious Vicky rapes Madhuri. Her brother blames her and is reluctant to file a police complaint. Her sister-in-law, however, decides to go to police when Akash assures to stand by Madhuri. The police inspector tips off the minister before registering the case. The minister tries to persuade her not to go ahead with the complaint but when she rebuffs him go on to rape her too and get both her and her husband killed. The court too absolves Vicky of the charge. Madhuri, with the help of Akash, takes revenge by taking on Vikcy, the minister and their accomplices, one by one.
Thanks to the success of Will's 'Big Midsummer Donkey Gag Play', John Shakespeare is finally gifted his coat of arms and becomes a gentleman...but will he act like one? Subscribe: http://bit.ly/BBCComedyGreats WATCH MORE: Upstart Crow: https://bit.ly/CGUpstartCrow Blackadder: http://bit.ly/ComedyGreatsBlackadder Live at the Apollo: http://bit.ly/2L9SAuA Only Fools and Horses: https://bit.ly/CGOnlyFoolsAndHorses Like us on Facebook!: https://bit.ly/ComedyGreatsFacebook Welcome to BBC Comedy Greats, home to the best comedy from the BBC! Whether you're a fan of the classics or if stand up comedy is more up your street then check out our hand picked playlists full of the funniest clips by the best performers. From Only Fools and Horses to Live at the Apollo we can guarantee plenty of awesom...
Poetry # John Shakespeare 125
John shakespear Tyranny of Punchlines Official video
To the world, Shakespeare left a lasting legacy and an awful lot of unanswered questions. Follow John Nettles as he recounts the life of William Shakespeare. Subscribe and click the bell icon to get more arts content every week: youtube.com/c/PerspectiveArts Perspective is YouTube's home for the arts. Come here to get your fill of great music, theatre, art and much, much more! From "Shakespeare: The Legacy" Content licensed from 3DD to Little Dot Studios. Any queries, please contact us at: [email protected]
A short summary of Shakespeare's 1595-6 history play, King John with illustrations by Mya Gosling.
Brilliant World Cup related tune from John Shakespeare. From the excellent mid-90s Loungecore collection from Castle. - uploaded via http://www.mp32u.net/
Camille O’Sullivan plays Constance in King John, Act III, Scene 4. Constance laments the loss of her son, Arthur, who has been captured, but disputes the suggestion that she has gone mad. Subscribe to Guardian Culture ► http://bit.ly/subgdnculture To mark the 400th anniversary of Shakespeare’s death, we asked leading actors to perform key speeches from his plays. Read more about Shakespeare solos ► http://bit.ly/ShakespeareSolos Camille O’Sullivan performs at Brighton fringe, 12-15 May, and the Edinburgh festival, 6-21 August ► http://www.camilleosullivan.com/ The Guardian Film Show ► https://goo.gl/lxV8RV Guardian Culture website ► http://www.theguardian.com/culture Guardian Film website ► http://www.theguardian.com/film The Guardian on YouTube: The Guardian ► http://is.gd/guardianyt...
GRACE IS SUFFICIENT ALBUM
Join Lauren and Dr Kat as they time travel back to the year 1592 to visit Shakespeare's Birthplace AND Shakespeare's Schoolroom and Guildhall! But, expecting to meet William Shakespeare, they find themselves instead met by his father, John. Could this be a character worth investigating? What shady secrets will the pair uncover...? This episode was made possible with support from Arts Council England. A HUGE thanks also to The Shakespeare Birthplace Trust as well as Shakespeare's School Room and Guildhall for allowing us to film. If you have not yet visited either of these sites, we hope this episode inspires you to take a trip for yourselves discover more! CREDITS: Writer: Lauren Grierson Producer: Lauren Grierson Editor: Ian Grierson Illustrator: Ian Grierson Historians and Histori...
🌺Hello, everyone! In this video, I will be making a college student apartments, as well as a yoga studio. I had fun creating the characters in this build, I hope I represented them right with how I decorated their apartments. As for the yoga studio, this is a franchise of Keiko Spa and Beauty!! Watch and see how I go!🌺 Download PEPI HOSPITAL 2 for FREE here!!: https://linktr.ee/pepi_play 🕓 Time Stamps 🕓 0:00 Intro 0:25 Public Bathroom 1:34 Yoga Studio 4:43 College Girl Apartment 10:12 College Boy Apartment 12:50 Tour 🔓Gamepasses I used🔓 Just the Apartments and Yoga Studio: All but Large Plot and Basements The Overall Build: All Gamepasses used 💵Cost💵 Just the Apartments and Yoga Studio: $256,912 The Overall Build: $916,783 ⏰Time taken⏰ 6 hours 🍋Thank you so much for watching! Don’t...
Final Footage Of College Girl Right Before She Was Abducted & Killed Orange County 911, this is Rob. Hi, I think I just heard gunshots outside. Okay. How many shots did you hear? Four. You heard four? I think so, yeah. Okay. Did you see anyone by chance? No, no. I mean, you know. Lying awake in bed. Yes ma’am, okay. Alright, well. Do you want to speak to an officer about this? Well, I don’t know.] This is Eve Carson. In the early hours of March 5, 2008, her lifeless body was found lying in a pool of blood in the middle of an intersection. Her body was discarded like damaged goods. To her shocked family, it made no sense – Eve had no enemies. In fact, she was a kind soul with lots of friends. #annasolves #truecrime #documentary
Telugu Movie Undiporadhey Synopsis : this is a periodical love story based on real-life true events happened during the 1980s. The film revolves around a girl and a boy who meet at college admissions after that their love blossom at that point the story takes a real turn and their life becomes up and down. Director : Naveen Nayani Producer : Surinder Yadav ( Hindi ) Follow us on Facebook https://www.facebook.com/profile.php?id=100083405373684 Follow us on insta https://www.instagram.com/sur_music_world/ Follow us on Tweeter https://twitter.com/surmusicworld
Collegegiri is The Dubbed Version Of Telugu Movie Undiporadhey Synopsis : this is a periodical love story based on real-life true events happened during the 1980s. The film revolves around a girl and a boy who meet at college admissions after that their love blossom at that point the story takes a real turn and their life becomes up and down. Director : Naveen Nayani Producer : Surinder Yadav ( Hindi )
College Girl Ningthibi Nang Anouba Chahina Laktringei Tahoukhisi Matam Amagi Esheisingse If this song have copyright, please give inform to comment box. #oldisgold #perfectmediahouse
#malayalam #movie #CentralTalkies College Girl is a 1974 Indian Malayalam film, directed by Hariharan and produced by Dr Balakrishnan. The film stars Prem Nazir, Vidhubala. Welcome to CENTRAL TALKIES YouTube Channel CENTRAL TALKIES is the leading player in the Indian Music industry OFFICE @ 1C-143,KALPATARU GARDENS, ASHOK NAGAR, NEAR EAST WEST FLYOVER,KANDIVALI EAST,MUMBAI-400101 #ചാനൽ_സബ്സ്ക്രൈബ്_ചെയ്യാൻ_മറക്കരുതേ🙏 പുതിയ വീഡിയോസ് അപ്ഡേറ്റുകള്ക്ക് സബ്സ്ക്രൈബ്_ചെയ്യാൻ_മറക്കരുതേ
Music video by Travis Porter performing College Girl. (C) 2011 JIVE Records, a unit of Sony Music Entertainment
College Girl 1960 | Bollywood Romantic Movie | Shammi Kapoor, Vyjayantimala | Old Hindi Film College Girl is a 1960 Hindi black-and-white romantic family film written by K. A. Narayan and directed by T. Prakash Rao. The film starred Shammi Kapoor and Vyjayanthimala in the lead with Om Prakash, Tabassum, Nana Palsikar, Raj Mehra, Purnima, Randhir, Achala Sachdev, Leela Mishra and Mohan Choti, forming an ensemble cast. The film was produced by B. L. Rawal . #ShammiKapoorMovie #VyjayanthimalaMovie #RomanticMovie #CollegeGirl1960 #ClassicHdMovie Movie : College Girl 1960 Starring : Shammi Kapoor, Vyjayantimala, Raj Mehra, Achala Sachdev, Om Prakash, Tabassum and Leela Mishra. Directed by T Prakash Rao Music Directed by Shankar Jaikishan Singer Mohammed Rafi, Lata Mangeshkar Lyricist Rajindr...
Synopsis Kamla wants to make her own way in the world despite the orthodox views of her father. To that end, she pushes herself to go to college with the help of one of her father's friends. Watch - COLLEGE GIRL (1960) Full Hindi Movies Starring : Vyjayantimala, Shammi Kapoor, Om Prakash, Raj Mehra, Nana Palsikar, Randhir, Mohan Choti, Vinod Sharma, Purnima, Tabbassum, Achala Sachdev, Leela Mishra, Sarita Devi & Others. Banner : Rawal Films Presents Presenter : Eagle Home Entertainments Pvt. Ltd. Movie : College Girl (1960) Starring : Vyjayantimala, Shammi Kapoor, Om Prakash, Raj Mehra, Nana Palsikar, Randhir, Mohan Choti, Vinod Sharma, Purnima, Tabbassum, Achala Sachdev, Leela Mishra, Sarita Devi & Others. Playback Singer : Lata Mangeshkar, Mohd. Rafi Art : Sant Singh Photography : Prak...
Watch #CollegeGirl 1960s Romantic drama movie. Starring Shammi Kapoor, Vyjayantimala, Raj Mehra, Achala Sachdev, Om Prakash, Tabassum and Leela Mishra. Directed by T Prakash Rao Music Directed by Shankar Jaikishan Singer Mohammed Rafi, Lata Mangeshkar Lyricist Rajindra Krishan #ShammiKapoorMovie #VyjayanthimalaMovie #RomanticMovie #CollegeGirl1960 #ClassicHdMovie For More Super Hit Movies :- Subscribe to Cinecurry Classics https://www.youtube.com/channel/UC5MnoJaasj210D8l2jkBVmQ?sub_confirmation=1 Don't forget to watch: Trending : https://bit.ly/2KEhdgv Best of Mithun movies : http://bit.ly/2mA2gBw Best of Dilip Kumar movies : http://bit.ly/2mgPAhS Best of Raj Kapoor movies : http://bit.ly/2n0xLlI Best of Guru Dutt movie...
शम्मी कपूर और वैजयंतीमाला की दमदार फिल्म I Starring : Vyjayantimala, Shammi Kapoor, Om Prakash, Raj Mehra, Nana Palsikar, Randhir, Mohan Choti, Vinod Sharma, Purnima, Tabbassum, Achala Sachdev, Leela Mishra, Sarita Devi & Others. Welcome to OSCAR MOVIE please Like & Share our videos and watch full videos in daily updates... Subscribe My Channel
Kamla wants to make her own way in the world despite the orthodox views of her father. To that end, she pushes herself to go to college with the help of one of her father's friends. Director:T. Prakash Rao Writers:Rajendra KrishanK.A. Narayan Stars:Shammi Kapoor,Om Prakash,Raj Mehra, Vyjayanthimala Music: Shankar Jaikishen #shammikapoorsongs #shammikapoor #vyjayanthimovies #vyjayanthimala #60shindisongs #60slove Stay Tuned For Classic Hindi Movies https://www.youtube.com/channel/UCnMteBBfPS-DWgMC0kSSkbQ
Kamla wants to make her own way in the world despite the orthodox views of her father. To that end, she pushes herself to go to college with the help of one of her father's friends. Director: T. Prakash Rao Writers: Rajendra KrishanK.A. Narayan Stars: Shammi Kapoor, Om Prakash, Raj Mehra, Vyjayanthimala Music: Shankar Jaikishen Welcome to our YouTube channel, your gateway to Mzaalo, the game-changing blockchain video streaming app that delivers premium content and incredible rewards - all for FREE! Immerse yourself in the golden era of cinema with classic romantic movies featuring legendary stars like Dilip Kumar, Dev Anand, Guru Dutt, Madhubala, and more, on Mzaalo Classic Romance. Don’t wait any longer; start watching and dive into the world of timeless romance! Google Play Store: h...
College Girl 1982 Full Movie | कॉलेज गर्ल फ़ुल मूवी| Super Hit Hindi Full Movie | Bollywood Action Movie | #BollywoodMovie #ClassicHdMovie #OldHindiMovie #BollywoodSuperHitMovie #SuperHitMovie #OldClassicMovie #SadabaharMovie #Sadabahar #EvergreenSongs #EvergreenMovie #Evergreen #ActionMovie #SuperhitActionMovie #HindiMovie #FullMovie #BollywoodClassicMovie #Blockbuster #BlockbusterSuperhit #BlockbusterSuperhitMovie Watch #College Girl 1960, Bollywood Action Movie. Director : T. Prakash Rao Producer : B. L. Rawal Writer : K. A. Narayan Music : Shankar Jaikishan Year : 1960 Cast : Om Prakash, Raj Mehra, Shammi Kapoor, Vyjayanthimala, Achala Sachdev, Leela Mishra, Mohan Choti, Nana Paliskar, Purnima, Randheer & Tabassum Like Comment Share - Don't forget to LIKE the video and write your C...
#CollegeGirl1960 #ShammiKapoorMovie #VyjayanthimalaMovie #TVNXT Watch & Enjoy College Girl कॉलेज गर्ल Hindi Flim From #CollegeGirl कॉलेज गर्ल Hindi Movie starring Shammi Kapoor, Vyjayantimala, Raj Mehra, Achala Sachdev, Om Prakash, Tabassum and Leela Mishra. Among others. Directed by T Prakash Rao And Produced by B.L.Rawal. Music composed by Shankar Jaikishan. Watch #CollegeGirl 1960s Romantic drama movie. Starring Shammi Kapoor, Vyjayantimala, Raj Mehra, Achala Sachdev, Om Prakash, Tabassum and Leela Mishra. Directed by T Prakash Rao Music Directed by Shankar Jaikishan Singer Mohammed Rafi, Lata Mangeshkar Lyricist Rajindra Krishan. Watch Latest Bollywood Gossips, Latest Bollywood Movies and Political News Subscribe to TVnxthindi. Subscribe for More Interesting Updates: https://bit....
John Shakespeare (c. 1531 – 7 September 1601) was the father of William Shakespeare. He was the son of Richard Shakespeare of Snitterfield, a farmer. He moved to Stratford-upon-Avon and married Mary Arden, with whom he had eight children, five of whom survived into adulthood. A well-to-do glover and whittawer (leather worker) by trade, Shakespeare was a dealer in hides and wool, and was elected to several municipal offices, serving as an alderman and culminating in a term as bailiff, the chief magistrate of the town council, before he fell on hard times for reasons unknown to historians. His fortunes later revived after the success of his son, and he was granted a coat of arms five years before his death, probably at the instigation and expense of his playwright son.
John Shakespeare moved to Stratford-upon-Avon in 1551, where he became a successful businessman involved in several related occupations. From 1556 to 1592, several official records identify him as a glovemaker, which was probably his primary trade, as tradition remembers him as following that trade even into his old age, but the records of his real estate purchases and legal expenses indicate an income much higher than that of a small-town tradesman. The administration of his father's estate in 1561 names him as a farmer. He inherited and leased agricultural lands and is on record as selling timber and barley. Court records also document him as a "brogger", an unlicensed—and therefore illegal—wool dealer. In addition, he bought and leased out houses. He was twice taken to court for violating the usury laws that prohibited charging interest higher than the legal limit of 10 percent.
Lady, please tell me
How you really feel
Deep inside your heart?
I hope that it's for real
I feel lonely
Do you wish that I was there?
There right by your side
Showing you I care
College Girl
Won't you come over tonight
I want to make love to you
College Girl
I can make it feel alright
Lately I've been thinkin'
'Bout how we use to be
Something about your love
That makes my life complete
I've never met a girl
Can make me feel the way you do?
Girl, won't you come over
So I can do the things I wanna do
College Girl
Won't you come over tonight
I want to make love to you
College Girl
I can make it feel alright, yeah
College Girl
Won't you come over tonight
I want to make love to you
College Girl
I can make it feel alright
College girl, please let me know the deal
If you're for real about the love
College Girl
Won't you come over tonight?
I want to make love to you
College Girl
I can make it feel alright
College Girl
Won't you come over tonight?
I want to make love to you
College Girl
I can make it feel alright
College Girl
Won't you come over tonight?
I want to make love to you
College Girl