CINXE.COM
Testimonials – Creative Commons Certificate
<!DOCTYPE html> <html lang="en-US" class="no-js"> <head> <script src="https://cdn.optimizely.com/js/9439190689.js"></script> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script> <title>Testimonials – Creative Commons Certificate</title> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel='dns-prefetch' href='//s.w.org' /> <link rel="alternate" type="application/rss+xml" title="Creative Commons Certificate » Feed" href="https://certificates.creativecommons.org/feed/" /> <link rel="alternate" type="text/calendar" title="Creative Commons Certificate » iCal Feed" href="https://certificates.creativecommons.org/calendar/?ical=1" /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/certificates.creativecommons.org\/wp-includes\/js\/wp-emoji.js?ver=5.9.10","twemoji":"https:\/\/certificates.creativecommons.org\/wp-includes\/js\/twemoji.js?ver=5.9.10"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ ( function( window, document, settings ) { var src, ready, ii, tests; // Create a canvas element for testing native browser support of emoji. var canvas = document.createElement( 'canvas' ); var context = canvas.getContext && canvas.getContext( '2d' ); /** * Checks if two sets of Emoji characters render the same visually. * * @since 4.9.0 * * @private * * @param {number[]} set1 Set of Emoji character codes. * @param {number[]} set2 Set of Emoji character codes. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( set1, set2 ) { var stringFromCharCode = String.fromCharCode; // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 ); var rendered1 = canvas.toDataURL(); // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 ); var rendered2 = canvas.toDataURL(); return rendered1 === rendered2; } /** * Detects if the browser supports rendering emoji or flag emoji. * * Flag emoji are a single glyph made of two characters, so some browsers * (notably, Firefox OS X) don't support them. * * @since 4.2.0 * * @private * * @param {string} type Whether to test for support of "flag" or "emoji". * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( type ) { var isIdentical; if ( ! context || ! context.fillText ) { return false; } /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec, * but has landed in Twemoji early, so we can add support for it, too. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( [ 0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F ], [ 0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F ] ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( [ 0xD83C, 0xDDFA, 0xD83C, 0xDDF3 ], [ 0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3 ] ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather an five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( [ 0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F ], [ 0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F ] ); return ! isIdentical; case 'emoji': /* * Burning Love: Just a hunk, a hunk of burnin' love. * * To test for Emoji 13.1 support, try to render a new emoji: Heart on Fire! * * The Heart on Fire emoji is a ZWJ sequence combining ❤️ Red Heart, a Zero Width Joiner and 🔥 Fire. * * 0x2764, 0xfe0f == Red Heart emoji. * 0x200D == Zero-Width Joiner (ZWJ) that links the two code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0xD83D, 0xDD25 == Fire. * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( [0x2764, 0xfe0f, 0x200D, 0xD83D, 0xDD25], [0x2764, 0xfe0f, 0x200B, 0xD83D, 0xDD25] ); return ! isIdentical; } return false; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {Object} src The url where the script is located. * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = script.type = 'text/javascript'; document.getElementsByTagName( 'head' )[0].appendChild( script ); } tests = Array( 'flag', 'emoji' ); settings.supports = { everything: true, everythingExceptFlag: true }; /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for( ii = 0; ii < tests.length; ii++ ) { settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] ); settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ]; if ( 'flag' !== tests[ ii ] ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function() { settings.DOMReady = true; }; // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { ready = function() { settings.readyCallback(); }; /* * Cross-browser version of adding a dom ready event. */ if ( document.addEventListener ) { document.addEventListener( 'DOMContentLoaded', ready, false ); window.addEventListener( 'load', ready, false ); } else { window.attachEvent( 'onload', ready ); document.attachEvent( 'onreadystatechange', function() { if ( 'complete' === document.readyState ) { settings.readyCallback(); } } ); } src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } )( window, document, window._wpemojiSettings ); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='tribe-common-skeleton-style-css' href='https://certificates.creativecommons.org/wp-content/plugins/the-events-calendar/common/src/resources/css/common-skeleton.min.css?ver=4.12.6' type='text/css' media='all' /> <link rel='stylesheet' id='tribe-tooltip-css' href='https://certificates.creativecommons.org/wp-content/plugins/the-events-calendar/common/src/resources/css/tooltip.min.css?ver=4.12.6' type='text/css' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='https://certificates.creativecommons.org/wp-includes/css/dist/block-library/style.css?ver=5.9.10' type='text/css' media='all' /> <style id='global-styles-inline-css' type='text/css'> body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} </style> <link rel='stylesheet' id='parent-style-css' href='https://certificates.creativecommons.org/wp-content/themes/twentysixteen/style.css?ver=5.9.10' type='text/css' media='all' /> <link rel='stylesheet' id='cc-google-fonts-css' href='//fonts.googleapis.com/css?family=Source+Sans+Pro%3A400%2C600%2C700%7CRoboto+Condensed&ver=5.9.10' type='text/css' media='all' /> <link rel='stylesheet' id='cc-fontello-css' href='https://certificates.creativecommons.org/wp-content/themes/cc/fonts/fontello/css/cc-fontello.css?ver=5.9.10' type='text/css' media='all' /> <link rel='stylesheet' id='cc-style-css' href='https://certificates.creativecommons.org/wp-content/themes/cc/css/app.css?ver=20171103' type='text/css' media='all' /> <link rel='stylesheet' id='twentysixteen-style-css' href='https://certificates.creativecommons.org/wp-content/themes/cc/style.css?ver=5.9.10' type='text/css' media='all' /> <!--[if lt IE 10]> <link rel='stylesheet' id='twentysixteen-ie-css' href='https://certificates.creativecommons.org/wp-content/themes/twentysixteen/css/ie.css?ver=20160816' type='text/css' media='all' /> <![endif]--> <!--[if lt IE 9]> <link rel='stylesheet' id='twentysixteen-ie8-css' href='https://certificates.creativecommons.org/wp-content/themes/twentysixteen/css/ie8.css?ver=20160816' type='text/css' media='all' /> <![endif]--> <!--[if lt IE 8]> <link rel='stylesheet' id='twentysixteen-ie7-css' href='https://certificates.creativecommons.org/wp-content/themes/twentysixteen/css/ie7.css?ver=20160816' type='text/css' media='all' /> <![endif]--> <script type='text/javascript' src='https://certificates.creativecommons.org/wp-includes/js/jquery/jquery.js?ver=3.6.0' id='jquery-core-js'></script> <script type='text/javascript' src='https://certificates.creativecommons.org/wp-includes/js/jquery/jquery-migrate.js?ver=3.3.2' id='jquery-migrate-js'></script> <!--[if lt IE 9]> <script type='text/javascript' src='https://certificates.creativecommons.org/wp-content/themes/twentysixteen/js/html5.js?ver=3.7.3' id='twentysixteen-html5-js'></script> <![endif]--> <link rel="https://api.w.org/" href="https://certificates.creativecommons.org/wp-json/" /><link rel="alternate" type="application/json" href="https://certificates.creativecommons.org/wp-json/wp/v2/pages/16" /><meta name="generator" content="WordPress 5.9.10" /> <link rel="canonical" href="https://certificates.creativecommons.org/about/testimonials/" /> <link rel='shortlink' href='https://certificates.creativecommons.org/?p=16' /> <link rel="alternate" type="application/json+oembed" href="https://certificates.creativecommons.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcertificates.creativecommons.org%2Fabout%2Ftestimonials%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://certificates.creativecommons.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcertificates.creativecommons.org%2Fabout%2Ftestimonials%2F&format=xml" /> <meta name="tec-api-version" content="v1"><meta name="tec-api-origin" content="https://certificates.creativecommons.org"><link rel="https://theeventscalendar.com/" href="https://certificates.creativecommons.org/wp-json/tribe/events/v1/" /><style type="text/css"> /* <![CDATA[ */ img.latex { vertical-align: middle; border: none; background: none; } /* ]]> */ </style> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css"> </head> <body class="page-template-default page page-id-16 page-child parent-pageid-14 tribe-no-js"> <div id="page" class="site"> <div class="site-inner"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <div class="site-header-wrapper"> <header id="masthead" class="site-header sticky-nav-main" role="banner"> <div class="site-header-main"> <div class="site-branding"> <a class="cc-site-logo-link" href="https://certificates.creativecommons.org/" rel="home"> <img class="cc-site-logo" alt="Creative Commons" width="303" height="72" src="https://certificates.creativecommons.org/wp-content/themes/cc/images/cc.logo.white.svg"> </a> </div><!-- .site-branding --> <button id="menu-toggle" class="menu-toggle"><i class="cc-icon-menu"></i> <span>Menu</span></button> <div id="site-header-menu" class="site-header-menu"> <nav id="site-navigation" class="main-navigation" role="navigation" aria-label="Primary Menu"> <div class="menu-primary-menu-container"><ul id="menu-primary-menu" class="primary-menu"><li id="menu-item-22" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22"><a href="https://certificates.creativecommons.org/about/packages/">Registration</a></li> <li id="menu-item-174" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-174"><a href="https://certificates.creativecommons.org/about/calendar/">Calendar</a></li> </ul></div> </nav><!-- .main-navigation --> <nav id="secondary-navigation" class="secondary-navigation" role="navigation" aria-label="Secondary Menu"> </nav><!-- .main-navigation --> </div><!-- .site-header-menu --> </div><!-- .site-header-main --> </header><!-- .site-header --> </div><!-- .site-header-wrapper --> <div id="content" class="site-content"> <!-- header-below --> <!-- END header-below --> <div id="primary" class="content-area"> <div id="wrapper-main" class="wrapper-main"> <div class="breadcrumbs" typeof="BreadcrumbList" vocab="http://schema.org/"> <!-- Breadcrumb NavXT 6.6.0 --> <span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to Creative Commons Certificate." href="https://certificates.creativecommons.org" class="home" ><span property="name">Creative Commons Certificate</span></a><meta property="position" content="1"></span> > <span property="itemListElement" typeof="ListItem"><span property="name" class="post post-page current-item">Testimonials</span><meta property="url" content="https://certificates.creativecommons.org/about/testimonials/"><meta property="position" content="2"></span> </div> <main id="main" class="site-main" role="main"> <article id="post-16" class="post-16 page type-page status-publish hentry"> <header class="entry-header"> <h1 class="entry-title">Testimonials</h1> </header><!-- .entry-header --> <div class="entry-content"> <p> </p> <h3><i><span style="font-weight: 400;">TESTIMONIALS</span></i></h3> <p><i><span style="font-weight: 400;"><span>“If at all possible, take this course. It’s probably the most valuable and rewarding professional development training I’ve done since becoming an academic librarian in 2013. I thought I had a pretty decent grasp of the ins and outs of Creative Commons before taking the course, and the difference in my knowledge and skillset now compared to then is night and day. In my experience, the heavy majority of faculty don’t have a great idea of what CC is, how it works, or what it can do for them. Being a campus resource for CC has raised my profile at the university, which has done wonders for work building and running an OER program. As soon as I started helping faculty with individual reference consultations about CC, word started getting around. Now I’m getting faculty I’ve never met emailing me to ask for advice on a CC question, because they heard about me from a peer. Money well spent.” – Stephen Craig </span>Finlay</span></i></p> <p><i><span style="font-weight: 400;">“This is the best training to learn everything you need to know about CC licenses and licensing practice including info related to OER. The course is well structured and tutors offer great support.”- Maja Bogataj Jancic</span></i></p> <p><i><span style="font-weight: 400;">“One of the most challenging but rewarding courses. Well designed and well executed. Worth every minute spent.” – Ethan Pullman</span></i></p> <p><i><span style="font-weight: 400;">“This course has been a wellspring of information for me as an instructional designer, musician, and author. Each module addressed topics in a well-organized and thorough manner, and the assignments were directly aligned with that content. As I progressed through this course, I was able to compile an abundance of ideas for supporting faculty and staff at my institution, whether it be acquainting them with resources, guiding them in the use of these resources, or assisting them in creating resources of their own. This is the most useful and impactful professional development I have participated in since becoming an instructional designer.” -Laurie Nave</span></i></p> <p><i><span style="font-weight: 400;">“My Creative Commons experience was awesome. I particularly enjoyed the discussions and webinars. I had an opportunity to expand my educational horizons and collaborate with great educators. “Team Work Makes The Dream Work”’ -Verlindsey Stewart</span></i></p> <p><i><span style="font-weight: 400;">“Taking the Creative Commons Certification course will be incredibly beneficial as I work with campus faculty to adopt/adapt/create OER materials to benefit our students. Understanding how Creative Commons Licensing works is essential to creating a more equitable campus for everyone.” -Jennifer Pate</span></i></p> <p><i><span style="font-weight: 400;">“I’m really glad I took this course. It was intense, but very worth the takeaways, which include a great set of Creative Commons learning objects as well as solid grounding in licensing that will help me personally as well as in my role at my institution.” -Tess Olten</span></i><i><span style="font-weight: 400;"></span></i></p> <p><i><span style="font-weight: 400;">“Great way to interact with others around the globe to create a better understanding of the Open movement and Creative Commons licensing!” -Anonymous</span></i></p> <p><i><span style="font-weight: 400;">“It was a great experience to get to know the CC Community. I learned so much and got to meet nice people around the globe to discuss copyright, CC licenses and Open Access with them. Now I feel well informed and prepared to support others in using CC licenses.” -Katja Wermbter</span></i></p> <p><i><span style="font-weight: 400;">“I thought I knew a lot about Creative Commons and the licenses before I took the class, but now I’m aware of how much I didn’t know before! I feel much more confident in my ability to assist faculty at my institution in using Creative Commons-licensed works and in licensing their own work now.” -Jill Hallam-Miller</span></i></p> <p><i><span style="font-weight: 400;">“Great course, packed with valuable knowledge and taught by talented, passionate professionals.” -Larissa Smith</span></i></p> <p><i><span style="font-weight: 400;">“This course efficiently helped me learn what I needed to lead open education initiatives at my school.” -Anonymous</span></i><i><span style="font-weight: 400;"><br /> </span></i></p> <p><i><span style="font-weight: 400;">“I started simply to learn more about copyright and Creative Commons but quickly realized the value of the course lay in continuing to build the commons, the creative and collaborative community.” -Jane Jacobson</span></i></p> <p><i><span style="font-weight: 400;">“The Certified Course was an opportunity to receive basic and intermediate knowledge that clarified concepts that I did not handle clearly (although I thought I did) and understand that there is still a lot to learn. Not only did I receive theoretical knowledge but also many practical tools for managing content and copyright, all of this in a suitable structure that allowed me to learn quickly and that I found so great that I want to copy it in my own classes in the future.</span></i><i><span style="font-weight: 400;"></span></i></p> <p><i><span style="font-weight: 400;">El Curso Certificado fue una oportunidad de recibir conocimiento basico e intermedio que me aclaro conceptos que no manejaba claramente (aunque creia que si) y comprender que aun hay muchisimo que aprender. No solo recibi conocimiento teorico sino muchisimas herramientas practicas para el manejo de contenido y su derecho de autor, todo esto en una estructura adecuada que me permitio un rapido aprendizaje y que me resulto tan genial que quiero copiar en mis propias clases en el futuro.” -Jose Mendoza</span></i></p> <p><i><span style="font-weight: 400;">“Participating in the CC Certification course was an absolute delight. The content is well-organized and paced, providing an approachable introduction to open licensing for educators from a range of diverse backgrounds. One of the greatest benefits was the opportunity to connect with others from all over the globe, who share a passion for opening up the education process for ALL learners. I highly recommend this course to anyone seeking to work with openly licensed content.” -Sarah Hutton</span></i></p> <p><i><span style="font-weight: 400;">“If you’ve ever seen a Creative Commons license and wondered what on earth they were about, this course will tell you everything you could ever want to know. If you’re more familiar with CC Licenses and the range of activities they’re used for, like I was, you will still get tremendous value from this course. I’ve been using CC Licenses since 2002 and I got a lot of new information from this course and the chance to engage in hands-on learning activities that I can take back to my workplace.” -Lauren Bourdages</span></i></p> <p><i><span style="font-weight: 400;">“The Creative Commons Certificate Program for Librarians provided me with a solid understanding of the Creative Commons licenses and the integral role that they play in promoting and sustaining the open movement. Armed with the knowledge from this course, I feel more confident in my scholarly communication work with faculty and students at my institution.” -Khaleedah Thomas</span></i></p> <p><i><span style="font-weight: 400;">“The Course was very useful and even if you know a lot about CC already you will get a much better and deeper understanding after the course! It was well worth spending my time on!” -Fredrik Edman</span></i></p> <p><i><span style="font-weight: 400;">“The CC Certificate is vital knowledge as higher education evolves toward sharing knowledge in an open environment. The information I learned will help me provide better advice to faculty who are using or creating Open Educational Resources, as well as to students who are using CC-licensed works in their studies. Even more important, it gives me a toolbox I can reference as a librarian to be a stronger advocate for open access scholarship. I highly recommend this course for every information professional or educator.”-Adam Johnson</span></i></p> <p><i><span style="font-weight: 400;">“The Creative Commons Certificate Course should be required for anyone who works with or produces openly licensed material, particularly scholarly editors or publishers. Slapping an open license on a work is one thing, truly understanding the context, history, and potential use cases entirely another. This course offers a wealth of information delivered in a collegial environment by amazing instructors. Highly recommended!” – Jeno Mavzer</span></i></p> <p><em><span style="font-weight: 400;">“The Creative Commons Certificate Course was illuminating but also sparking a lot of creativity too; I thoroughly enjoyed the flexibility in terms of media that could be used and also it introduced me to a variety of new tools and platforms that was really useful. Even if they are not strictly relevant currently, it is always good to have an idea of what is available. The assignments asked you to understand the theory through practical implementations in your assignments and hence was very hands-on. The assignments were extremely well-structured, logical and clear in their directions. Altogether a pleasurable experience with great facilitators too! Highly recommended.”- </span><span style="font-weight: 400;">Kathryn Kure</span></em><i><span style="font-weight: 400;"><br /> </span></i></p> <p><i><span style="font-weight: 400;">“The Creative Commons Certificate course was an incredibly intense and enjoyable learning experience and I was able to apply my new learning and methods to my own work situation. It was exciting to work with the knowledgeable facilitators and to learn with other participants who shared their own experiences, viewpoints, and knowledge. This created a rich environment to study and learn about Creative Commons licensing and how it applies to the global OPEN movements. I recommend the course without reservation!” – Michael Nieckoski</span></i></p> <p><i><span style="font-weight: 400;">“I found this course to be immensely worthwhile. I gained a better understanding of the Creative Commons licenses and how to effectively apply them in different scenarios, as well as how licenses work with copyright law to ensure that creators and users have a myriad of possibilities when sharing work. As a librarian, I feel much more confident discussing and providing guidance to my colleagues who are interested in creating or using open work, such as Open Educational Resources. Most importantly, through taking this course I now have a network of colleagues from all over the world who I can turn to with questions and guidance. Creative Commons truly is a movement!” – Roxanna Palmer</span></i></p> <p><i><span style="font-weight: 400;">“The CC Certificate Program is one that I highly recommend to anyone working in any area of our shared information community. With a background covering libraries, publishing, and academia, I have found the value of this course bridges all three areas and provides takeaways that will not only enhance your own professional understanding and applications of CC licenses and open values, but also further develop your approaches and understandings toward those you work with, educate, and advocate for. The outcomes are beneficial on both a personal and professional level.” – Vanessa Rusch</span></i></p> <p class="p1"><span class="s1"><i>“The CC Cert course is a digestible and insightful introduction to the world of open licensing for educators. In addition to well curated content the course offers the opportunity to connect with other educators from around the world.”<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>-Robert Farrow<br /> </i></span></p> <p class="p1"><span class="s1"><i>“The Creative Commons (CC) certificate course gives you both a solid foundation of knowledge and a practical component that you can utilize in your professional and personal life. For me, this meant filling in the knowledge gaps and conducting a workshop for my village in Ukraine!” </i></span><span class="s1"><i>-Todd Raschen Lim</i></span></p> <p><span class="s2"><i>“</i></span><span class="s1"><i>Two of my favorite things about this certificate are: a. You discuss your CC questions and thoughts with others from all over the world, and you find out how your experiences compare and you learn from others, not just the facilitators; and b. The openness of the facilitators each time I wanted to modify my assignment slightly to make it more useful for my own context and goals.” <span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>-Maha Bali</i></span></p> <p class="p1"><span class="s1"><i>“The course was very valuable with rich content, clear presentation and interactive assignments and discussions. It was highly beneficial, and I acquired a deep knowledge about Creative Commons and its offered licenses. Practically, I will employ this knowledge in enhancing and increasing the awareness among the scholarly community stakeholders in my region ‘Middle East & North Africa.’”<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>-Mohamad Mostafa</i></span></p> <p class="p1"><span class="s1"><i>“It was a great pleasure for me to take this course. The way in which it is taught is very helpful for countries where the CC licensing literature is not so vast. This is precisely why more specialized people are needed in this field: cultural production demands it today. </i></span><span class="s1"><i>We all think we know something about CC licenses, but this course helps a lot to clear up doubts that at first may seem basic, but they are not. It is a whole universe in itself which needs a specialized and professional guide.”<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>-Julio Zetter Patiño</i></span></p> <p class="p1"><span class="s1"><i>“I knew a fair amount about OER and CC before I took this course, but I have now deepened my understanding and also engaged in fascinating discussions with people from the global network. I recommend it to every educator – no matter how much you already know.” -Alison Mead Richardson</i></span></p> <p class="p1"><span class="s1"><i>“The CC Certificate Course gave me the confidence to apply my now in-depth understanding of CC-licensing to my work. Participation in the course has encouraged me to think more deeply about copyright and the power of Creative Commons to liberate knowledge and has inspired me to get involved with the global movement.”<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>-Katya Henry</i></span></p> <p class="p1"><span class="s1"><i>“All the resources and information you could ask for about the creative commons landscape in a collegian, interactive, and rigorous format. Highly recommended.”<span class="Apple-converted-space"><span class="Apple-tab-span"> </span><span class="Apple-tab-span"></span></span>-Jennifer Collins, Summer, 2019“The Certification course is quite the eye opener. I could not have spent this time understanding CC better. I have greatly enjoyed the structure of the class. The modules were presented with a graduation that allows anyone to find their feet. My facilitator was great – and kept in touch every single week, there is no moment I felt left out. I spent countless hours reading comments from my classmates and the wealth of knowledge and experiences could not be more perfect for me. Thank you CC for the scholarship!”<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>-Brian Ssennoga</i></span></p> <p class="p1"><span class="s1"><i>“Take this course and receiving this certificate is the difference between thinking that I understand OA/OER and CC licenses and knowing that I understand!” </i></span><i>-Cindy Gruwell</i></p> <p class="p3"><span class="s1"><i>“This is a course that every educator should undertake! It should be a requirement for teachers, lecturers and policymakers. It is important for anyone working in the world of Open Educational Resources (OER) to gain a good grasp of Creative Commons licences. The course is presented in such a way that one can do the work at times that suit individual time schedules.” </i></span><span class="s1"><i>-Paul West </i></span></p> <p class="p1"><span class="s1"><i>“This course should be required by all faculty and instructional designers. Critical content. I now make my students learn Creative Commons.” -Robert Gibson</i></span></p> <p>“I would recommend the course for any interested academic librarian. It was very thoughtfully designed, engaging, and presented clear and reasonable expectations. Thank you for creating this excellent resource and learning opportunity.”<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>-Merinda McLure</p> <p class="p1"><span class="s1"><i>“The Certificate course for Librarians has been a great way to learn more about copyright and creative commons licenses. The international aspect has been equally rewarding since we live in a global digital environment. If you have an interest in OA and OER, this course ties right in with it. The course is well organized, well paced, and the perfect way to interact with other librarians and educators and learn how copyright law is addressed in many different countries. Creative Commons licenses provide a standardized way to grant copyright permission.” </i></span><i>-Susan Tsiouris</i></p> <p class="p1"><span class="s1"><i>“The CC Certificate course is a practical (and amazing!) way to ground yourself in the open world of CC licenses.<span class="Apple-converted-space"> </span>Moving through the course with a group of peers that are invested in learning about how to utilize and apply what we learned back at our own institutions was an inspirational and motivating experience.”<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>-Walter Butler</i></span></p> <p class="p1"><span class="s1"><i>“This course was fantastic. Well organized with just the right amount of reading and work. The assignments forced some digging and research, but also allowed a creative approach to the topic which made it fun! I learned so much. It was a great compliment to the SPARC Open Educational Leadership Program that I am also taking.<br /> <span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>-Dawn (Nikki) Cannon-Rech</i></span></p> <p class="p1"><span class="s1"><i>“I appreciated the opportunity to learn with and from others enrolled in the course as I developed a more robust understanding of CC licenses, open access, and the dedication to growing a population of creators and audiences invested in celebrating curiosity, creativity, collaboration… community.” <span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>-Anonymous</i></span></p> <p><em>“I registered for this course to be able to better serve the faculty at my university. The CC Certification course accomplished that goal and so much more. My fellow cohorts and facilitator were encouraging and provided well thought out responses. Our section had conversations full of growth and meaningful questions. This course is set up to not just memorize details, but learn and apply those details into real, open resources. I will be using what I learned and the contacts created in this course for the longevity of my career. 10/10 would recommend to anyone working with openly licensed materials.” <span class="Apple-converted-space"> <span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span></span>-Elizabeth Batte</em></p> <p class="p1"><span class="s1"><i>“This course has made all the fuzzy parts of copyright, Creative Commons licenses, and OER so much more clear. I feel empowered to advocate for change on my campus, and I know my students will benefit from all I’ve learned. If you want to rethink why you create what you create, why you teach what you teach, and all the pieces in between – this course is for you.” -Sybil Priebe</i></span></p> <p class="p1"><span class="s1"><i>“I have had a long love affair with Creative Commons licensing, and worked independently to learn all I could. But I was never confident about what I knew. I was so excited to learn about this certificate program as I wanted something more to help show my knowledge level. This course met and exceeded all my expectations. Be prepared to work, and be sure you can dedicate the time; you’ll need it! But once you finish you’ll feel a great sense of accomplishment and a higher level of knowledge about the open movement and Creative Commons licensing.” </i></span><span class="s1"><i>-Penny Pearson</i></span></p> <p class="p1"><span class="s1"><i>“The CC Certificate course was amazing! I have tried to find and use OER in the past, but I didn’t know how to find the most effective resources or what options I had for customizing the material. Now, I feel confident that I can use this new knowledge to provide accessible, effective OER for my students. Thank you Creative Commons!”<span class="Apple-tab-span"> </span>-Jessica Traylor</i></span></p> <p class="p1"><span class="s1"><i>The content and resources included in the Creative Commons Certificate Course for Librarians are great! I already knew a good bit about CC before taking the course; yet, I was never bored. The course includes the basic concepts and delves into detailed intricacies without being overwhelming.<span class="Apple-converted-space"> </span>I appreciated having an engaged instructor and lively discussions with librarians. -Denise Dimsdale</i></span></p> <p class="p1"><span class="s1"><i>“Going through the CC Certificate for Educators course was an enjoyable journey for me. (Yes, because learning is a journey!). The course was very well structured, fun, informative, and full of meaningful reflections and useful assignments -renewable assignments rather than disposable assignments-. I felt so productive. Most importantly, the course clarified some misunderstandings I had previously about copyright, CC licenses, and Open Educational Resources. Now I am much more confident to advocate and share my knowledge on these issues in my local contexts.”<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>-Wahya Setioko</i></span></p> <p class="p1"><span class="s1"><i></i></span><span class="s1"><i>“I really enjoyed the Creative Commons Certificate for Librarians. It was a great overview of the Creative Commons licenses and the world surrounding it. Through the course assignments, I was able to develop resources that I can reuse in teaching about copyright and Creative Commons licensing.<span class="Apple-converted-space"> </span>Relevant feedback was provided by instructors and facilitator, and it’s a great opportunity to dialogue with other librarians around issues related to Creative Commons and Open Access, and Open Educational Resources more generally.” </i>–<i>Roger Gillis</i></span></p> <p>“The Creative Commons Certificate provided me with a fantastic peer-based learning opportunity.<span class="Apple-converted-space"> </span>I had a great time learning more about CC, copyright and open values.<span class="Apple-converted-space"> </span>I look forward to sharing my knowledge with my peers and getting more involved in the conversation and the community moving forward.”<span class="Apple-converted-space"> <span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span></span>-Kylie Burgess</p> <p class="p1"><span class="s1"><i>“The Creative Commons Certification program helped me to develop a much more in-depth appreciation of the concepts of copyright, open access, and Creative Commons licenses. It is a sizable time commitment, but the understanding I have developed has been invaluable in helping me as I work to establish an open access institutional repository at the library for the university.<span class="Apple-converted-space"> </span>The content of the course and the related links and resources are exceptional.<span class="Apple-converted-space"> </span>The discussions have helped me acquire a broader perspective and a better sense of what direction open access needs to take on my campus to catch up with this movement. I found the Uber Webcasts with the lawyers to be especially helpful.<span class="Apple-converted-space"> </span>I would recommend this certificate to anyone working with open access resources.”<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>-Sue Czerny</i></span></p> <p class="p1"><span class="s1"><i>“Campuses often have well-meaning, enthusiastic volunteers looking to utilize, create, or promote open initiatives like OER or Open Access. An understanding of copyright and CC licenses is often a missing component to the knowledge that could turn that enthusiasm into actionable passion. This course bolstered my knowledge, and I know I’ll be recommending it to those on our campus who know they support the missions, but don’t quite have the nuances and vocabulary around copyright and open licensing down.”<span class="Apple-converted-space"> <span class="Apple-tab-span"></span><span class="Apple-tab-span"></span><span class="Apple-tab-span"></span><span class="Apple-tab-span"></span><span class="Apple-tab-span"></span><span class="Apple-tab-span"></span></span>-Barry Bailey</i></span></p> <p><em><span style="font-size: 19px; color: #1a1a1a;">I have taken the Creative Commons Certificate for Educators and have enjoyed the course greatly. In my opinion, the course was very well organized, well structured, and very informative. It was great to receive feedback on assignments from the CC Certificate team. It was also helpful to have the opportunity to provide comments on each assignment and to discuss course-related matters on Slack.—Mayya Revzina</span></em></p> <p><em><span style="font-size: 19px; color: #1a1a1a;">This course opened doors for me the moment it began, and I see no signs of this stopping. It is a tremendous source of education, opportunity, and inspiration.—Maran Wolston</span></em></p> <p><em><span style="font-size: 19px; color: #1a1a1a;">The course content is well organized. The topics in this course almost cover the entire ecosystem of Openness. Excellent references and case studies. I highly recommended this course for open education practitioners and the ones who are willing to join the open movement. The support and feedback provided by the course staff are commendable. Completing the performance assessments and sharing it with others gave me a sense of satisfaction.—Lokesh Rajendran</span></em></p> <p><em><span style="font-size: 19px; color: #1a1a1a;">The CC Certificate course gave me the opportunity to learn more about the intricacies of license compatibility. But it was more than that: through the course and conversations with my fellow classmates, I came away with new ideas for opening up my community.—Colleen Cressman</span></em></p> <p><em><span style="font-weight: 400;">“A well structured and diverse course. Do you think you know everything about Creative Commons? Well, enroll in this programme and see if you can pass the quizzes. I guarantee you that you will have some surprises and, for sure, you will learn new things.” —George Hari Popescu</span></em></p> <p><em><span style="font-weight: 400;">“I wasn’t sure at first if I should take this course because I thought I knew a lot about Creative Commons and CC licenses already. I’m very glad I did take the course because I learned quite a bit more than I had already known. The information is just the right amount, with lots of additional resources if one wants to go further. The assignments were particularly helpful in solidifying my understanding and providing resources that I can reuse in my own advocacy work!”—Christina Hendricks</span></em></p> <p><em><span style="font-weight: 400;">“The course took the general information about Creative Commons I had already acquired and expanded it into areas that I’d not experienced such as open resources. It rounded out an incomplete mental picture. If you already know something about CC, this will take you farther, but if you are new to CC you’ll leave with a working knowledge and the resources to grow your own mental map.”—Carol Simpson</span></em></p> <p><em><span style="font-weight: 400;">“The fundamentals of copyright, open licensing, and cultures and technologies of sharing creative intellectual products are of absolutely fundamental importance in the everyday lives of scholars and educators today. Creative Commons’ Certificate Program is an intensive but engaging and illuminating way to master these intricacies. This stuff is so important and the CC Cert Program is so powerful that I encourage every single educator and educational policy person I know to take it!” Jonathan Poritz</span></em></p> <p><i><span style="font-weight: 400;">“I’m so glad I got the chance to take the CC Certificate for Librarians course in its beta version. It has been an amazing learning experience. As somebody who leads our OER initiative on campus, the opportunity to learn more about Creative Commons licenses on a much deeper level, engage with our instructor and the rest of the cohort to dispel our misconceptions about the licenses enabled me to have a better understanding of what each CC license means.”—Regina Gong</span></i></p> <p><i><span style="font-weight: 400;">“This certification is a ‘must have’ for librarians working with Open Access and Open Educational Resources. The content is thorough and engaging, and you will feel your confidence growing as you work with the CC licenses each week.”—Jennifer Cournoyer</span></i></p> <p><i><span style="font-weight: 400;">“I work with minority language speakers as they promote and develop their languages. For the literacy division of our organization, using CC licenses is already a standard procedure, but I wasn’t aware of this until recently. I would like to help develop a consistent way to consolidate our knowledge of Open Education Resources and OER ideals within our organization.”—Anonymous</span></i></p> <p><i><span style="font-weight: 400;">“The peek I had into Open Education Resources was exciting and inspiring! OER can be the building blocks in a movement to change the way education and literacy are done around the world, providing access to those who are cut off due to lack of finances, while at the same time empowering them to adapt resources to fit their needs and cultures or create their own new resources.”—Anonymous</span></i></p> </div><!-- .entry-content --> </article><!-- #post-## --> </main><!-- .site-main --> </div> <div id="wrapper-sidebar" class="wrapper-sidebar"> <aside id="secondary" class="sidebar widget-area" role="complementary"> <section id="advanced_sidebar_menu-2" class="widget advanced-sidebar-menu"> <!-- advanced-sidebar-menu/core-template --> <ul class="parent-sidebar-menu" ><li class="page_item page-item-14 current_page_ancestor current_page_parent has_children"><a href="https://certificates.creativecommons.org/">CC Certificate Program</a><ul class="child-sidebar-menu"><li class="page_item page-item-20"><a href="https://certificates.creativecommons.org/about/packages/">Registration</a></li> <li class="page_item page-item-18"><a href="https://certificates.creativecommons.org/about/calendar/">Calendar</a></li> <li class="page_item page-item-16 current_page_item"><a href="https://certificates.creativecommons.org/about/testimonials/" aria-current="page">Testimonials</a></li> <li class="page_item page-item-236"><a href="https://certificates.creativecommons.org/about/certificate-resources-cc-by/">Certificate Resources (CC BY)</a></li> <li class="page_item page-item-32"><a href="https://certificates.creativecommons.org/about/faq/">Frequently Asked Questions (FAQ)</a></li> <li class="page_item page-item-526"><a href="https://certificates.creativecommons.org/about/translations/">Translations of Certificate Content</a></li> <li class="page_item page-item-96"><a href="https://certificates.creativecommons.org/about/certificate-graduates/">Certificate Graduates</a></li> <li class="page_item page-item-367"><a href="https://certificates.creativecommons.org/about/acknowledgements/">Acknowledgements</a></li> </ul><!-- End .child-sidebar-menu --></li></ul><!-- End .parent-sidebar-menu --></section> </aside><!-- .sidebar .widget-area --> </div> </div><!-- .content-area --> <!-- content-below --> <!-- END content-below --> </div><!-- .site-content --> <div class="site-footer-wrapper"> <footer id="colophon" class="site-footer sticky-nav-main" role="contentinfo"> <div class="cc-footer"> <div class="column cc-footer-main"> <div class="cc-footer-logo"> </div> <div class="cc-footer-links"> <div class="cc-footer-links-search"> <form role="search" method="get" class="search-form" action="https://certificates.creativecommons.org/"> <label> <span class="screen-reader-text">Search for:</span> <input type="search" class="search-field" placeholder="Search the website" value="" name="s" title="Search for:" /> </label> <button type="submit" class="search-submit" value="Search"> <span class="screen-reader-text">Search</span> </button></form> </div> </div> </div> <div class="column cc-footer-contact"> <h6><a href="/about/contact">We'd love to hear from you!</a></h6> <address> Creative Commons<br /> PO Box 1866, Mountain View, CA 94042 </address> <ul> <li><a href="mailto:info@creativecommons.org" class="mail">info@creativecommons.org</a></li> <li><a href="tel:1-415-429-6753">1-415-429-6753</a></li> <li><a style="color: white" href="/faq">Frequently Asked Questions</a></li> </ul> </div> <div class="column cc-footer-license"> <div class="license-icons"> <a rel="license" href="https://creativecommons.org/licenses/by/4.0/" title="Creative Commons Attribution 4.0 International license"> <i class="cc-icon-cc"></i><i class="cc-icon-cc-by"></i> </a> </div> <aside> <div xmlns:cc="https://creativecommons.org/ns#" about="https://creativecommons.org"> <p>Except where otherwise <a class="subfoot" href="/policies#license">noted</a>, content on this site is licensed under a <a class="subfoot" href="https://creativecommons.org/licenses/by/4.0/" rel="license">Creative Commons Attribution 4.0 International license</a>. <a class="subfoot" href="/website-icons" target="blank">Icons</a> by The Noun Project.</p> </div> </aside> </div> <div class="column cc-footer-search"> <form role="search" method="get" class="search-form" action="https://certificates.creativecommons.org/"> <label> <span class="screen-reader-text">Search for:</span> <input type="search" class="search-field" placeholder="Search the website" value="" name="s" title="Search for:" /> </label> <button type="submit" class="search-submit" value="Search"> <span class="screen-reader-text">Search</span> </button></form> </div> </div> </footer><!-- .site-footer --> </div><!-- .site-footer-wrapper --> </div><!-- .site-inner --> </div><!-- .site --> <script> ( function ( body ) { 'use strict'; body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' ); } )( document.body ); </script> <script> /* <![CDATA[ */var tribe_l10n_datatables = {"aria":{"sort_ascending":": activate to sort column ascending","sort_descending":": activate to sort column descending"},"length_menu":"Show _MENU_ entries","empty_table":"No data available in table","info":"Showing _START_ to _END_ of _TOTAL_ entries","info_empty":"Showing 0 to 0 of 0 entries","info_filtered":"(filtered from _MAX_ total entries)","zero_records":"No matching records found","search":"Search:","all_selected_text":"All items on this page were selected. ","select_all_link":"Select all pages","clear_selection":"Clear Selection.","pagination":{"all":"All","next":"Next","previous":"Previous"},"select":{"rows":{"0":"","_":": Selected %d rows","1":": Selected 1 row"}},"datepicker":{"dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesMin":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Prev","currentText":"Today","closeText":"Done","today":"Today","clear":"Clear"}};/* ]]> */ </script><script type='text/javascript' src='https://certificates.creativecommons.org/wp-content/plugins/hypothesis/js/nohighlights.js?ver=0.6.0' id='nohighlights-js'></script> <script type='text/javascript' src='https://certificates.creativecommons.org/wp-content/plugins/hypothesis/js/showhighlights.js?ver=0.6.0' id='showhighlights-js'></script> <script type='text/javascript' src='https://certificates.creativecommons.org/wp-content/plugins/hypothesis/js/sidebaropen.js?ver=0.6.0' id='sidebaropen-js'></script> <script type='text/javascript' src='https://certificates.creativecommons.org/wp-content/themes/cc/js/breakpoint-body-class.js?ver=20171103' id='cc-breakpoint-body-class-js'></script> <script type='text/javascript' src='https://certificates.creativecommons.org/wp-content/themes/cc/js/cc.js?ver=20171103' id='cc-common-js'></script> <script type='text/javascript' src='https://certificates.creativecommons.org/wp-content/themes/cc/js/sticky-nav.js?ver=20171103' id='cc-sticky-nav-js'></script> <script type='text/javascript' src='https://certificates.creativecommons.org/wp-content/themes/cc/js/toggle-search.js?ver=20171103' id='cc-toggle-search-js'></script> <script type='text/javascript' src='https://certificates.creativecommons.org/wp-content/themes/cc/js/donation.js?ver=20171103' id='cc-donation-js'></script> <script type='text/javascript' src='https://certificates.creativecommons.org/wp-content/themes/twentysixteen/js/skip-link-focus-fix.js?ver=20160816' id='twentysixteen-skip-link-focus-fix-js'></script> <script type='text/javascript' id='twentysixteen-script-js-extra'> /* <![CDATA[ */ var screenReaderText = {"expand":"expand child menu","collapse":"collapse child menu"}; /* ]]> */ </script> <script type='text/javascript' src='https://certificates.creativecommons.org/wp-content/themes/twentysixteen/js/functions.js?ver=20160816' id='twentysixteen-script-js'></script> </body> </html> <!-- Dynamic page generated in 0.171 seconds. --> <!-- Cached page generated by WP-Super-Cache on 2024-11-23 04:17:29 --> <!-- super cache -->