Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="ejemplo">
  <h1>70% of People Worry About Fake News — How Google Combats It</h1>
<h2>How Google Combats Fake News</h2>
<h3>Elevate and strengthen quality journalism</h3>
<p>Though critical readers would spend a few minutes of Google-directed due diligence to reveal a story’s veracity, by then, it may be too late — the story may have already gone viral and received millions of page views.</p>

<p><strong>The truth:</strong> The above story was published by a conspiracy site known for false accounts. The church says it has no record of the priest by that name or such an incident at the archdiocese.</p>

<p>In this article, I’d like to talk about two instances where fake news did not just eat away people’s time spent online web-browsing, but caused economic outrage. And then move on to discussing how Google plans on tackling this.</p>

<p>Terms such as “<i>fake news</i>”, “<i>post-truth</i>” and “<i>alternative facts</i>” will be forever associated with the 2016 Presidential Election.</p>
</div>
              
            
!

CSS

              
                /* la URL de la tipografía en Google Fonts */
@import url('https://fonts.googleapis.com/css?family=PT+Serif:400,400i,700');


html {
  /* Si cambias la URL de arriba, debes cambiar esta primera clase */
  font-family: 'PT Serif';
  font-size:100%;
  color:#292929;
}

body {
  padding: 2% 5%;
}

/* A partir de aquí, el código hace referencia a tamaños, interlíneas y anchos de párrafos*/

.ejemplo {
  max-width: 35em;
}

.ejemplo h1 {
  font-size:35px;
}

.ejemplo h2 {
  font-size:28px;
}

.ejemplo h3 {
  font-size:22.5px;
}

.ejemplo p {
  line-height: 1.5;
  font-size: 18px;
}

              
            
!

JS

              
                
              
            
!
999px

Console