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

              
                <link href="https://fonts.googleapis.com/css?family=Pangolin" rel="stylesheet">
<div class="container-fluid">
  <div class="container page-header text-center">
    <h1>Steve Jobs</h1>
    <h6>Think Differently.</h6>
  </div>
  
  <div class="container text-center">
    <img class="img-fluid img-circle" src="http://www.adweek.com/agencyspy/wp-content/uploads/sites/7/2015/06/steve-jobs.jpg" alt="Image result for steve jobs">
  </div>
  
  <div class="container text-center description">
  <p>Steve Jobs is responsible for some of the most impactful technological products in Human History.</p>
  </div>
  
  <div class="container">
    <ul class="list-group">
      <li class="list-group-item">1955 - Born in San Francisco, CA</li>
      <li class="list-group-item">1972 - Attends Reed College</li>
      <li class="list-group-item">1974 - Drops out and travels to India</li>
      <li class="list-group-item">1976 - Founded Apple</li>
      <li class="list-group-item">1977 - Releases the Apple II</li>
      <li class="list-group-item">1983 - Releases the Apple Lisa</li>
      <li class="list-group-item">1984 - Releases the Apple Machintosh</li>
      <li class="list-group-item">1985 - Gets Fired from Apple</li>
      <li class="list-group-item">1985 - Founded Next</li>
      <li class="list-group-item">1986 - Takes over Pixar</li>
      <li class="list-group-item">1995 - Produces Toy Story</li>
      <li id="96" class="list-group-item">1996 - Apple buys Next for $427 million dollars and merges with it</li>
      <li class="list-group-item">1997 - Back as CEO of Apple</li>
      <li class="list-group-item">2001 - Releases the iPod</li>
      <li class="list-group-item">2007 - Releases the iPhone</li>
      <li class="list-group-item">2010 - releases the iPad</li>
      <li class="list-group-item">2011 - Dies at the age of 56 in Palo Alto, CA</li>
    </ul>
  </div>
  
  <div class="container text-center">
    <blockquote class="blockquote"><q>
      Here's to the crazy ones. The misfits. The rebels. The trouble-makers. The round pegs in the square holes. The ones who see things differently. They're not fond of rules, and they have no respect for the status-quo. You can quote them, disagree with them, glorify, or vilify them. But the only thing you can't do is ignore them. Because they change things. They push the human race forward. And while some may see them as the crazy ones, we see genius. Because the people who are crazy enough to think they can change the world, are the ones who do.</q>
      <footer>Steve Jobs</footer>
    </blockquote>
  </div>
  
  <div class="container text-center">
    <a href="https://www.ted.com/talks/steve_jobs_how_to_live_before_you_die" target="_blank"><h5>To get a glimpse of Steve's incredible character, click here to watch his Stanford Address.</h5></a>
  </div>
</div>

              
            
!

CSS

              
                .page-header h6 {
  font-size: 12px;
}

img {
  margin-top: 20px;
  border-radius: 10%;
  width: 320px;
  height:320px;
}
.description {
  margin-top: 10px;
}

.description p {
  font-size: 12px;
}

.list-group {
  margin-top: 30px;
}
.list-group-item {
  border: 0;
  padding-left: 0;
  padding-right: 0;
  clear: both;
}

.blockquote {
  margin-top: 30px;
  font-family: Pangolin;
  
}
.blockquote footer {
  text-align: right;
  margin-top: 20px;
}

a {
  margin-top: 60px;
  text-decoration: none;
}

h5 {
  line-height: 30px;
}
              
            
!

JS

              
                
              
            
!
999px

Console