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

William Penn

William Penn (24 October 1644  (O.S. 14 October 1644) – 30 July 1718) was an English real estate entrepreneur, philosopher, early Quaker and founder of the Province of Pennsylvania, the English North American colony and the future Commonwealth of Pennsylvania. He was an early advocate of democracy and religious freedom, notable for his good relations and successful treaties with the Lenape Native Americans. Under his direction, the city of Philadelphia was planned and developed.

In 1681, King Charles II handed over a large piece of his American land holdings to William Penn to satisfy a debt the king owed to Penn's father. This land included present-day Pennsylvania and Delaware. Penn immediately set sail and took his first step on American soil in New Castle in 1682. On this occasion, the colonists pledged allegiance to Penn as their new proprietor, and the first general assembly was held in the colony. Afterwards, Penn journeyed up river and founded Philadelphia. However, Penn's Quaker government was not viewed favourably by the Dutch, Swedish, and English settlers in what is now Delaware. They had no 'historical' allegiance to Pennsylvania, so they almost immediately began petitioning for their own assembly. In 1704 they achieved their goal when the three southernmost counties of Pennsylvania were permitted to split off and become the new semi-autonomous colony of Lower Delaware. As the most prominent, prosperous and influential "city" in the new colony, New Castle became the capital.

Jeremiah Evarts

Jeremiah F. Evarts (February 3, 1781 – May 10, 1831), also known by the pen name William Penn, was a Christian missionary, reformer, and activist for the rights of American Indians in the United States, and a leading opponent of the Indian removal policy of the United States government.

Early years

Evarts was born in Sunderland, Vermont, son of James Evarts, and graduated from Yale College in 1802. He was admitted to the bar in 1806. Evarts married Mehitabel Sherman, a daughter of United States Declaration of Independence signer Roger Sherman, and a member of the extended Baldwin, Hoar & Sherman family that had a great influence on U.S. public affairs. Jeremiah and Mehitabel Sherman Evarts were the parents of William M. Evarts, who later became a United States Secretary of State, US Attorney General and a US Senator from New York.

Battle against Indian removal

Evarts was influenced by the effects of the Second Great Awakening and served the American Board of Commissioners for Foreign Missions as its treasurer from 1812-1820 and Secretary from 1821 until his death in 1831.

General Cigar Company

General Cigar Company is one of the largest manufacturers of cigars in the world. It has been owned by Swedish Match since 2005.

Company history

In 1961 General Cigar, which was profitably selling about $30 million worth of cigars annually, was purchased for approximately $25 million by a group of investors headed by Edgar M. Cullman, a fourth generation American in the tobacco industry.

Later in the 1960s, Culbro and General Cigar acquired Gradiaz Annis, maker of Gold Label cigars and the Temple Hall factory that owned the Macanudo brand name, ushering in a turn towards hand-rolled premium cigars. Macanudo, a small label made in limited quantities for the market in the United Kingdom, was seen as the principal vehicle for growth in the premium cigar category. A careful effort was made to reblend the product for the large American marketplace (then and now subject to a ban on Cuban tobacco, the industry's gold standard) using select binder and filler from the Dominican Republic, Jamaica, and Mexico and Connecticut shade-grown wrapper. Mass advertising was conducted in support of the brand, which by the early 1990s had grown into the best selling premium cigar label in the United States.

William Penn (athlete)

William Penn (March 15, 1883 July 2, 1943) was an American tug of war competitor who competed in the 1920 Summer Olympics.

In 1920 he finished fourth with the American team in the Olympic tug of war contest.

External links

  • William Penn's profile at Sports Reference.com

  • William Penn (Calder)

    William Penn is a bronze statue by Alexander Milne Calder of William Penn.

    It is located at the Philadelphia City Hall, Penn Square, Broad Street and Market Streets, top of clock tower, Philadelphia, Pennsylvania. It was installed 1894; it was cast in fourteen sections, and took almost two years to finish.

    Gallery

  • 1894 - ready for lift up

  • 1894 - ready for lift up

  • Alexander Milne Calder, with the head of his statue of William Penn

  • Alexander Milne Calder, with the head of his statue of William Penn

  • Left side

  • Left side

    References

    External links

  • William Penn at Philadelphia Public Art
  • William Penn (cricketer)

    William Penn (born 29 August 1849, The Cedars, Lee, Lewisham, London - died: 15 August 1921, Belgravia, Westminster, London) was an English cricketer who played for Kent in the 1870s.

    Penn was born in Lee, Lewisham, the son of John Penn, a manufacturer of marine engines at the John Penn and Sons works in Deptford and Greenwich, and educated at Harrow (1865-1867).

    Cricket

    A right-handed batsman and bowler, he was the eldest of three brothers who also played for Kent; the other two were Frank and Dick Penn. He played for Kent 18 times from 1870 to 1878, also appearing for Marylebone Cricket Club (1874) and Gentlemen of the South (1871-1874). His son Eric Penn played for Cambridge University and MCC.

    Business career

    William Penn became a member of the Institution of Mechanical Engineers in 1873, proposed by his father and Joseph Whitworth. He became a partner in the family business around the same time, began to manage the firm in 1875, and in 1889, when the firm was incorporated as John Penn and Sons Ltd, he and his elder brother John were the two principal shareholders. When the company amalgamated with the Thames Ironworks and Shipbuilding Company ten years later, William Penn became a director of the new company, but resigned from the board by April 1901 on grounds of ill health.

    Podcasts:

    Famous quotes by William Penn:

    "Right is right, even if everyone is against it; and wrong is wrong, even if everyone is for it"
    "A true friend freely, advises justly, assists readily, adventures boldly, takes all patiently, defends courageously, and continues a friend unchangeably."
    "I expect to pass through life but once. If therefore, there be any kindness I can show, or any good thing I can do to any fellow being, let me do it now, and not defer or neglect it, as I shall not pass this way again."
    "A good End cannot sanctify evil Means; nor must we ever do Evil, that Good may come of it"
    "Less judgment than wit is more sail than ballast"
    "Love is the hardest lesson in Christianity; but, for that reason, it should be most our care to learn it."
    "Only trust thyself, and another shall not betray thee."
    "O Lord, help me not to despise or oppose what I do not understand."
    "No pain, no palm; no thorns, no throne; no gall, no glory; no cross, no crown"
    "True godliness does not turn men out of the world, but enables them to live better in it and excites their endeavors to mend it."
    "Knowledge is the treasure of a wise man."
    • In Penn's Shadow (1680-1720) - Philadelphia: The Great Experiment

      For free educational materials, visit our website at www.historymakingproductions.com/philadelphia-the-great-experiment Philadelphia celebrates its founder more than any other American city, but who exactly is William Penn? For many, he is a statue atop City Hall, but Penn's busy life reflected an era of chaotic upheaval and conflict. He is at once a radical Quaker, political prisoner, visionary city planner, absent landlord, and a slaveholder. His ideals, contradictions, and ambitions cast a long shadow across American history. This installment of Philadelphia: The Great Experiment explores what it means to live In Penn's Shadow. Watch more at http://www.historyofphilly.com/ Check out our website! http://historymakingproductions.com/ Created and Produced by SAM KATZ Directed and Produc...

      published: 05 Sep 2014
    • William Penn and the Pennsylvania Colony- Discovery Education

      published: 31 Jan 2020
    • William Penn | A biography by Jameslinink |

      A biography made by Jameslinink My history project Music credited by: https://www.youtube.com/watch?v=4zZFcoKJ6yc (Carefree by Kevin MacLeod) Edited in Shotcut (1-30-17)

      published: 07 Feb 2018
    • William Penn

      William Penn and the Quaker Movement William Penn was born in London on October 14, 1644, to a prosperous English family. Even from his grammar school days, young Willy took a great interest in religion, but couldn't find anything that suited him. From grammar school, he went to Oxford University, entering Christ Church College at the age of 15. While at Oxford, William went to hear Thomas Lowe, a Quaker, who had been preaching about the Society of Friends, a new church with new ideas. This had a dramatic impact on William Penn, who took great interest in the new ideas that the Society of Friends brought to the table. However, William was still a nonconformist, and he resented the strict discipline that was inflicted upon him at Oxford. Eventually, he was expelled for "ejecting the surp...

      published: 19 Jul 2017
    • The History of Colonial Pennsylvania For Kids

      Engaging Colonial Pennsylvania Lesson Plan: https://www.history4humans.com/collections/colonial-america/products/william-penn-the-quakers-and-pennsylvania-colony In this episode, students learn the amazing story of the founding of the Pennsylvania as William Penn's Holy Experiment! The exploration question is, "How did William Penn's Quaker beliefs influence the development of colonial Pennsylvania?" It starts with introducing who the Quakers are- their egalitarian beliefs, pacifism, and the prosecution that Quakers faced in England and in Puritan New England as well. When William Penn cashed in on the debt King Charles II owed his father, he founded the Pennsylvania colony to be a sanctuary for the oppressed Quakers and other religious dissenters. It teaches how Penn's Holy Experiment...

      published: 29 Jul 2022
    • The Splendid Dream: William Penn (1954) Biography, History

      Profiles William Penn's early life in England when he opposed parliamentary limitation on freedom of religion. Tells of his conversion to the Quakers and of his plan to found the colony of Pennsylvania. From the Cavalcade of America series. Please like and subscribe!!!

      published: 17 Aug 2021
    • Quakers

      Quakers, or the Society of Friends, seek a refuge in America where they can practice without persecution. Quaker William Penn finds a permanent settlement in Pennsylvania.

      published: 01 May 2020
    • The Pennsylvania Colony (Colonial America)

      https://www.tomrichey.net/colonial-america.html This lecture is a brief introduction to the early history of the Pennsylvania Colony. The Pennsylvania Colony was founded in 1681 by William Penn, a Quaker convert who converted a debt owed to his family by the king into a charter for a proprietary colony. In keeping with Quaker principles, Penn's Frame of Government established complete religious toleration in the colony - a policy ahead of its time when even Christian toleration seemed lenient. Penn made treaties with local Indian tribes in order to get them to vacate the land around Philadelphia voluntarily, which was a rare measure of humanity during this time period. The Pennsylvania Colony's economy, based on growing staple crops, was typical for the Middle Colonies. This lecture is o...

      published: 06 Feb 2019
    • Who Was William Penn?

      published: 02 May 2020
    • William Penn and the Quakers: The Pennsylvania Colony (1982) U.S. History

      Describes the Quaker's struggle for freedom of worship in 17th century England. Discusses how under William Penn's leadership a colony was founded in America which was dedicated to freedom of speech and religion, and equality for all, and how an ample opportunity for trade, industry, and agriculture helped Pennsylvania develop into a political, economic, and cultural leader among the colonies. Please like and subscribe!!!

      published: 14 Feb 2022
    In Penn's Shadow (1680-1720) - Philadelphia: The Great Experiment
    28:56

    In Penn's Shadow (1680-1720) - Philadelphia: The Great Experiment

    • Order:
    • Duration: 28:56
    • Uploaded Date: 05 Sep 2014
    • views: 311051
    For free educational materials, visit our website at www.historymakingproductions.com/philadelphia-the-great-experiment Philadelphia celebrates its founder more than any other American city, but who exactly is William Penn? For many, he is a statue atop City Hall, but Penn's busy life reflected an era of chaotic upheaval and conflict. He is at once a radical Quaker, political prisoner, visionary city planner, absent landlord, and a slaveholder. His ideals, contradictions, and ambitions cast a long shadow across American history. This installment of Philadelphia: The Great Experiment explores what it means to live In Penn's Shadow. Watch more at http://www.historyofphilly.com/ Check out our website! http://historymakingproductions.com/ Created and Produced by SAM KATZ Directed and Produced by ANDREW FERRETT Written by DEVON MCREYNOLDS, NATHANIEL POPKIN, and ANDREW FERRETT Segment Producer WENDY COX Edited by RACHEL SOPHIA STEWART Director of Photography PAUL VAN HAUTE Music Composed by PATRICK DE CAUMETTE Associate Producer JONATHAN KOHL Creative Director GINNY LASCO Sound Design by DAN LA PORTA
    https://wn.com/In_Penn's_Shadow_(1680_1720)_Philadelphia_The_Great_Experiment
    William Penn and the Pennsylvania Colony- Discovery Education
    5:16

    William Penn and the Pennsylvania Colony- Discovery Education

    • Order:
    • Duration: 5:16
    • Uploaded Date: 31 Jan 2020
    • views: 36010
    https://wn.com/William_Penn_And_The_Pennsylvania_Colony_Discovery_Education
    William Penn | A biography by Jameslinink |
    4:52

    William Penn | A biography by Jameslinink |

    • Order:
    • Duration: 4:52
    • Uploaded Date: 07 Feb 2018
    • views: 12015
    A biography made by Jameslinink My history project Music credited by: https://www.youtube.com/watch?v=4zZFcoKJ6yc (Carefree by Kevin MacLeod) Edited in Shotcut (1-30-17)
    https://wn.com/William_Penn_|_A_Biography_By_Jameslinink_|
    William Penn
    2:49

    William Penn

    • Order:
    • Duration: 2:49
    • Uploaded Date: 19 Jul 2017
    • views: 19218
    William Penn and the Quaker Movement William Penn was born in London on October 14, 1644, to a prosperous English family. Even from his grammar school days, young Willy took a great interest in religion, but couldn't find anything that suited him. From grammar school, he went to Oxford University, entering Christ Church College at the age of 15. While at Oxford, William went to hear Thomas Lowe, a Quaker, who had been preaching about the Society of Friends, a new church with new ideas. This had a dramatic impact on William Penn, who took great interest in the new ideas that the Society of Friends brought to the table. However, William was still a nonconformist, and he resented the strict discipline that was inflicted upon him at Oxford. Eventually, he was expelled for "ejecting the surplice and rioting in the quadrangle." Whatever “surplice” means, William's father was furious at him, and sent him off to France in the hope of refining him. Well apparently it worked, and William ended up in Ireland at his family estate. While there, he once again met Thomas Lowe. It was during one of Lowe’s sermons that a passage from scripture really spoke to William Penn. "There is a faith which overcomes the world, and there is a faith which is overcome by the world." This is what William had been waiting for, a faith in God that is immutable and concrete. It is said that William Penn officially became a Quaker at that moment. Soon, William Penn was active in the Quaker movement and befriended the founder of the church, George Fox. William even went as far as springing George from jail several times. Some say the term “Quaker” was actually developed because of one of Fox's arrests. When he was in court defending against a blasphemy charge, he said, “Everyone should tremble and quake at the Word of God." So the term, Quaker, was coined. Originally it was used as an insult, but the Quakers adopted the term in a “we don't really care what you think” kind of way. Read more about William Penn: https://www.drivethruhistory.com/william-penn
    https://wn.com/William_Penn
    The History of Colonial Pennsylvania For Kids
    9:43

    The History of Colonial Pennsylvania For Kids

    • Order:
    • Duration: 9:43
    • Uploaded Date: 29 Jul 2022
    • views: 20947
    Engaging Colonial Pennsylvania Lesson Plan: https://www.history4humans.com/collections/colonial-america/products/william-penn-the-quakers-and-pennsylvania-colony In this episode, students learn the amazing story of the founding of the Pennsylvania as William Penn's Holy Experiment! The exploration question is, "How did William Penn's Quaker beliefs influence the development of colonial Pennsylvania?" It starts with introducing who the Quakers are- their egalitarian beliefs, pacifism, and the prosecution that Quakers faced in England and in Puritan New England as well. When William Penn cashed in on the debt King Charles II owed his father, he founded the Pennsylvania colony to be a sanctuary for the oppressed Quakers and other religious dissenters. It teaches how Penn's Holy Experiment was predominately about ensuring religious tolerance for all believers- which was radical for its time. It also covers other developments of democracy in Pennsylvania and Penn's framework for government that influenced the US Constitution. Penn's treatment of Indians was exceptional for the time- purchasing land from the Lenape Indians and signing Penn's Treaty to ensure peace and friendship. It covers how Penn also looked to profit from the land and attracted migrants from across Europe - making Pennsylvania very ethnically diverse. It covers Pennsylvania's mixed economy, the development of slavery in the colony, and how over time, as more settlers came- the peace with the Indian tribes was replaced with conflict and Indian removal. The lesson plan that goes with the episode includes an interactive notesheet sheet to follow along the vide, a quick quiz to check for understanding, and an extension lesson that has students design an advertisement for Pennsylvania to attract settlers based on a short reading and from what they learned in the video. Harness critical thinking, creativity, and some awesome history! I do hope you enjoy, dan :) PS- If you enjoyed it, show it! Like & subscribe. www.history4humans.com - a video history curriculum like no other! "Cut the lecture and up the engagement!" Instagram: https://www.instagram.com/history_4_humans/ Facebook: https://www.facebook.com/History4Humans Tiktok: https://www.tiktok.com/t/ZTRewFcjw/
    https://wn.com/The_History_Of_Colonial_Pennsylvania_For_Kids
    The Splendid Dream: William Penn (1954) Biography, History
    20:45

    The Splendid Dream: William Penn (1954) Biography, History

    • Order:
    • Duration: 20:45
    • Uploaded Date: 17 Aug 2021
    • views: 2076
    Profiles William Penn's early life in England when he opposed parliamentary limitation on freedom of religion. Tells of his conversion to the Quakers and of his plan to found the colony of Pennsylvania. From the Cavalcade of America series. Please like and subscribe!!!
    https://wn.com/The_Splendid_Dream_William_Penn_(1954)_Biography,_History
    Quakers
    2:27

    Quakers

    • Order:
    • Duration: 2:27
    • Uploaded Date: 01 May 2020
    • views: 69805
    Quakers, or the Society of Friends, seek a refuge in America where they can practice without persecution. Quaker William Penn finds a permanent settlement in Pennsylvania.
    https://wn.com/Quakers
    The Pennsylvania Colony (Colonial America)
    7:14

    The Pennsylvania Colony (Colonial America)

    • Order:
    • Duration: 7:14
    • Uploaded Date: 06 Feb 2019
    • views: 68407
    https://www.tomrichey.net/colonial-america.html This lecture is a brief introduction to the early history of the Pennsylvania Colony. The Pennsylvania Colony was founded in 1681 by William Penn, a Quaker convert who converted a debt owed to his family by the king into a charter for a proprietary colony. In keeping with Quaker principles, Penn's Frame of Government established complete religious toleration in the colony - a policy ahead of its time when even Christian toleration seemed lenient. Penn made treaties with local Indian tribes in order to get them to vacate the land around Philadelphia voluntarily, which was a rare measure of humanity during this time period. The Pennsylvania Colony's economy, based on growing staple crops, was typical for the Middle Colonies. This lecture is one of many that I have produced about Colonial America and fits into Period 2 of the AP US History curriculum.
    https://wn.com/The_Pennsylvania_Colony_(Colonial_America)
    Who Was William Penn?
    2:10

    Who Was William Penn?

    • Order:
    • Duration: 2:10
    • Uploaded Date: 02 May 2020
    • views: 22651
    https://wn.com/Who_Was_William_Penn
    William Penn and the Quakers: The Pennsylvania Colony (1982) U.S. History
    14:29

    William Penn and the Quakers: The Pennsylvania Colony (1982) U.S. History

    • Order:
    • Duration: 14:29
    • Uploaded Date: 14 Feb 2022
    • views: 2924
    Describes the Quaker's struggle for freedom of worship in 17th century England. Discusses how under William Penn's leadership a colony was founded in America which was dedicated to freedom of speech and religion, and equality for all, and how an ample opportunity for trade, industry, and agriculture helped Pennsylvania develop into a political, economic, and cultural leader among the colonies. Please like and subscribe!!!
    https://wn.com/William_Penn_And_The_Quakers_The_Pennsylvania_Colony_(1982)_U.S._History
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • In Penn's Shadow (1680-1720) - Philadelphia: The Great Experiment
      28:56
      In Penn's Shadow (1680-1720) - Philadelphia: The Great Experimentremove from playlist
    • William Penn | A biography by Jameslinink |
      4:52
      William Penn | A biography by Jameslinink |remove from playlist
    • William Penn
      2:49
      William Pennremove from playlist
    • The History of Colonial Pennsylvania For Kids
      9:43
      The History of Colonial Pennsylvania For Kidsremove from playlist
    • The Splendid Dream: William Penn (1954) Biography, History
      20:45
      The Splendid Dream: William Penn (1954) Biography, Historyremove from playlist
    • Quakers
      2:27
      Quakersremove from playlist
    • The Pennsylvania Colony (Colonial America)
      7:14
      The Pennsylvania Colony (Colonial America)remove from playlist
    • William Penn and the Quakers: The Pennsylvania Colony (1982) U.S. History
      14:29
      William Penn and the Quakers: The Pennsylvania Colony (1982) U.S. Historyremove from playlist
    PLAYLIST TIME: 0:00 / 1:38:41

    In Penn's Shadow (1680-1720) - Philadelphia: The Great Experiment

    For free educational materials, visit our website at www.historymakingproductions.com/philadelphia-the-great-experiment Philadelphia celebrates its founder more than any other American city, but who exactly is William Penn? For many, he is a statue atop City Hall, but Penn's busy life reflected an era of chaotic upheaval and conflict. He is at once a radical Quaker, political prisoner, visionary city planner, absent landlord, and a slaveholder. His ideals, contradictions, and ambitions cast a long shadow across American history. This installment of Philadelphia: The Great Experiment explores what it means to live In Penn's Shadow. Watch more at http://www.historyofphilly.com/ Check out our website! http://historymakingproductions.com/ Created and Produced by SAM KATZ Directed and Produced by ANDREW FERRETT Written by DEVON MCREYNOLDS, NATHANIEL POPKIN, and ANDREW FERRETT Segment Producer WENDY COX Edited by RACHEL SOPHIA STEWART Director of Photography PAUL VAN HAUTE Music Composed by PATRICK DE CAUMETTE Associate Producer JONATHAN KOHL Creative Director GINNY LASCO Sound Design by DAN LA PORTA
    28:56
    In Penn's Shadow (1680-1720) - Philadelphia: The Great Experiment
    For free educational materials, visit our website at www.historymakingproductions.com/phil...
    published: 05 Sep 2014
    Play in Full Screen
    5:16
    William Penn and the Pennsylvania Colony- Discovery Education
    published: 31 Jan 2020
    Play in Full Screen
    4:52
    William Penn | A biography by Jameslinink |
    A biography made by Jameslinink My history project Music credited by: https://www.youtub...
    published: 07 Feb 2018
    Play in Full Screen
    2:49
    William Penn
    William Penn and the Quaker Movement William Penn was born in London on October 14, 1644...
    published: 19 Jul 2017
    Play in Full Screen
    9:43
    The History of Colonial Pennsylvania For Kids
    Engaging Colonial Pennsylvania Lesson Plan: https://www.history4humans.com/collections/col...
    published: 29 Jul 2022
    Play in Full Screen
    20:45
    The Splendid Dream: William Penn (1954) Biography, History
    Profiles William Penn's early life in England when he opposed parliamentary limitation on ...
    published: 17 Aug 2021
    Play in Full Screen
    2:27
    Quakers
    Quakers, or the Society of Friends, seek a refuge in America where they can practice witho...
    published: 01 May 2020
    Play in Full Screen
    7:14
    The Pennsylvania Colony (Colonial America)
    https://www.tomrichey.net/colonial-america.html This lecture is a brief introduction to t...
    published: 06 Feb 2019
    Play in Full Screen
    2:10
    Who Was William Penn?
    published: 02 May 2020
    Play in Full Screen
    14:29
    William Penn and the Quakers: The Pennsylvania Colony (1982) U.S. History
    Describes the Quaker's struggle for freedom of worship in 17th century England. Discusses ...
    published: 14 Feb 2022
    Play in Full Screen

    William Penn

    William Penn (24 October 1644  (O.S. 14 October 1644) – 30 July 1718) was an English real estate entrepreneur, philosopher, early Quaker and founder of the Province of Pennsylvania, the English North American colony and the future Commonwealth of Pennsylvania. He was an early advocate of democracy and religious freedom, notable for his good relations and successful treaties with the Lenape Native Americans. Under his direction, the city of Philadelphia was planned and developed.

    In 1681, King Charles II handed over a large piece of his American land holdings to William Penn to satisfy a debt the king owed to Penn's father. This land included present-day Pennsylvania and Delaware. Penn immediately set sail and took his first step on American soil in New Castle in 1682. On this occasion, the colonists pledged allegiance to Penn as their new proprietor, and the first general assembly was held in the colony. Afterwards, Penn journeyed up river and founded Philadelphia. However, Penn's Quaker government was not viewed favourably by the Dutch, Swedish, and English settlers in what is now Delaware. They had no 'historical' allegiance to Pennsylvania, so they almost immediately began petitioning for their own assembly. In 1704 they achieved their goal when the three southernmost counties of Pennsylvania were permitted to split off and become the new semi-autonomous colony of Lower Delaware. As the most prominent, prosperous and influential "city" in the new colony, New Castle became the capital.

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

    Edit

    Mid Penn Bancorp, Inc. and William Penn Bancorporation Receive Regulatory Approvals for Merger

    Business Wire 29 Mar 2025
    MPB) and William Penn Bancorporation (“William Penn”) (NASDAQ ... William Penn with and into Mid Penn.
    Edit

    Mid Penn Bancorp, Inc. and William Penn Bancorporation Receive Regulatory Approvals for Merger (Form 8-K) (William Penn Bancorp Inc)

    Public Technologies 28 Mar 2025
    MPB) and William Penn Bancorporation ("William Penn") (NASDAQ ... and each of Mid Penn and William Penn may file with the SEC other relevant documents concerning the proposed transaction.
    Edit

    Mid Penn Bancorp, Inc. and William Penn Bancorporation Receive Regulatory Approvals for Merger (Form 8-K) (Mid Penn Bancorp Inc)

    Public Technologies 28 Mar 2025
    MPB) and William Penn Bancorporation ("William Penn") (NASDAQ ... and each of Mid Penn and William Penn may file with the SEC other relevant documents concerning the proposed transaction.
    Edit

    Jessica Battaglia

    The Citizens' Voice 28 Mar 2025
    She loved concerts, Broadway shows, Penn State games, Disney trips, cruises, dance recitals, and soccer games ... Ursina Teitelbaum from Penn Medicine and Dr. William Dempsey from the Wright Center for ...
    Edit

    How the Trump Smithsonian order is fighting another bulwark of woke insanity

    New York Post 28 Mar 2025
    That’s an insult to everyone ... One recent target was William Penn, a man famous for founding a state based on the idea of religious freedom; it took public outrage to reverse 2024 National Park Service plans to remove his Philly statue ... That is.
    Edit

    Business Combination Prospectus (Form 425) (William Penn Bancorp Inc)

    Public Technologies 28 Mar 2025
    ... effect of shares of Mid Penn common stock to be issued in the business combination transaction; and other facts that may affect future results of Mid Penn, William Penn and the combined company.
    Edit

    William Penn powers past Midland 26-0 in dominant victory

    The Oskaloosa Herald 27 Mar 2025
    FREMONT, Neb. — The No. 10-ranked William Penn men's lacrosse team delivered an emphatic 26-0 shutout victory over Midland in Heart of America Athletic Conference action Wednesday ... .
    Edit

    William Penn continues spring campaign at CMU Invite

    The Oskaloosa Herald 27 Mar 2025
    BOONVILLE, Mo. — The Statesmen men's golf team got back on the links Monday and Tuesday as it competed at the Central Methodist Invitational ... .
    Edit

    I love Philadelphia, but I’d never taken a City Hall tour. Don’t make the same mistake

    Press & Guide 27 Mar 2025
    There, in a circular room, was a small exhibit about City Hall and its iconic statute of William Penn by Alexander Milne Calder, which is 37 feet tall and 53,000 pounds (of course, Easley told the legend of the curse of William Penn too).
    Edit

    2025 NFL mock draft: Expert projections for first round, one month before draft

    The Tennessean 27 Mar 2025
    Abdul Carter, EDGE, Penn StateMike Tannenbaum, ESPN.com ... Abdul Carter, EDGE, Penn StateChris Trapasso, CBSSports.com. Abdul Carter, EDGE, Penn State5 ... Abdul Carter, EDGE, Penn StateBen Standig, The Athletic ... Tyler Warren, TE, Penn State.
    Edit

    2025 NFL mock draft roundup: Experts split on Shedeur Sanders' landing spot

    Milwaukee Journal Sentinel 27 Mar 2025
    Abdul Carter, Edge, Penn State ... Abdul Carter, Edge, Penn State ... Abdul Carter, Edge, Penn State ... Tyler Warren, TE, Penn State ... Abdul Carter, Edge, Penn State ... Mykel Williams, Edge, Georgia ... Tyler Warren, TE, Penn State ... Mykel Williams, Edge, Georgia.
    Edit

    2025 NFL three-round mock draft: Shedeur Sanders taken in top three, Steelers address future at QB

    CBS Sports 27 Mar 2025
    1 overall pick or that Penn State pass rusher Abdul Carter is the Titans' prospect of choice, then why waste the time it takes to visit Coral Gables? ... Penn State • Jr • 6'3" / 250 lbs ... Mykel Williams EDGE ... Penn State • Sr • 6'6" / 256 lbs.
    Edit

    Aneyas Williams' new position coach remembers him well from the Orange Bowl win for Notre Dame football

    South Bend Tribune 26 Mar 2025
    On the next snap, Williams barreled up the middle for 15 yards to the Penn State 4-yard-line ... Having switched his jersey number from 20 to 22, Williams hopes to emulate the leadership qualities of former Penn State transfer Devyn Ford.
    Edit

    Caitlin Clark's potential father-in-law Fran McCaffery 'agrees to coach' at Donald Trump's alma mater, Penn ...

    The Daily Mail 26 Mar 2025
    The 65-year-old Philadelphia native has reportedly accepted an offer to coach at Penn, a 270-year-old Ivy League institution that's produced Presidents William Henry Harrison and Donald Trump, not to mention former Houston Rockets guard Matt Maloney.
    ×