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

Auto Save

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 id="main">
   <script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
    <div class="container-fluid">
     <div class="jumbotron">
       <div class="row">
           <div class="col-md-12">
               <h1 id="title" class="title-bar">Chester Bennington </h1>
            </div>
       </div>
       <div class="row">
            <div align="center" class="col-md-12" >
                 <img id="main-pic"  class="img-responsive" src="http://images.complex.com/complex/images/c_limit,w_680/fl_lossy,pg_1,q_auto/aut0vbxi3hdp1kqsnowg/chester-bennington" alt="chester bennington smiling">  
            </div>
       </div>
       <div class="row">
         <div class="col-md-12">
           <h6 class="title-bar" id="main-title"> wikipedia: <a href="https://en.wikipedia.org/wiki/Chester_Bennington">Chaz the Chemist </a></h6>
         </div>
       </div>
       <div class="jumbotron bio-content">
         <div class="jumbotron content-box">
            <div class="col-md-12">
              <div class="row">
                <h2 align="center" class="content-header"> Biography </h2>
              </div>
           </div>
            <p>
              Chester Charles Bennington (March 20, 1976 – July 20, 2017) was an American singer and songwriter best known as the frontman for the rock band Linkin Park. He was also the lead singer for Dead by Sunrise and fronted Stone Temple Pilots from 2013 to 2015. 
            </p>
            <p>
              Bennington first gained prominence as a vocalist following the release of Linkin Park's debut album, Hybrid Theory, in 2000, which became a commercial success. The album was certified Diamond by the Recording Industry Association of America in 2005, making it the best-selling debut album of the decade, as well as one of the few albums to ever hit that many sales.[2] Linkin Park's following studio albums, from Meteora (2003) to One More Light (2017), continued the band's success.
           </p>
           <p>
             Bennington formed his own band, Dead by Sunrise, as a side project in 2005. The band's debut album, Out of Ashes, was released on October 13, 2009. He worked on new material with Stone Temple Pilots in 2013 to release the EP High Rise on October 8, 2013 via their own record label, Play Pen. Bennington has been ranked in the Top 100 Heavy Metal Vocalists by Hit Parader (No. 46).
           </p>
         </div>
          <div class="jumbotron content-box">
            <div class="col-md-12">
              <div class="row">
                <h2 align="center" class="content-header"> Songs </h2>
              </div>
           </div>
            <ul class="content-header">
              <li>
                <h4 class="song-header"> Lost in The Echo:</h4>
                <iframe src="http://www.youtube.com/embed/co4YpHTqmfQ"
     width="560" height="315" frameborder="0" allowfullscreen></iframe>
              </li>
              <li>
                <h4 class="song-header"> Breaking the Habit:</h4>
                <iframe src="http://www.youtube.com/embed/v2H4l9RpkwM"
     width="560" height="315" frameborder="0" allowfullscreen></iframe>
              </li>
                          <li>
                <h4 class="song-header"> Crawling:</h4>
                <iframe src="http://www.youtube.com/embed/Gd9OhYroLN0"
     width="560" height="315" frameborder="0" allowfullscreen></iframe>
              </li>
                          <li>
                <h4 class="song-header"> Somewhere I Belong:</h4>
                <iframe src="http://www.youtube.com/embed/zsCD5XCu6CM"
     width="560" height="315" frameborder="0" allowfullscreen></iframe>
              </li>
                          <li>
                <h4 class="song-header"> That Song:</h4>
                <iframe src="http://www.youtube.com/embed/8sgycukafqQ"
     width="560" height="315" frameborder="0" allowfullscreen></iframe>
              </li>
            </ul>
          </div>
         </div>
       </div>
    </div>
  </div>
</div>
              
            
!

CSS

              
                body {
  background-color: #000000;
  font-family: helvetica ;
}

.title-bar {
  text-align:center;
  color:black;
}

.bio-content {
  background-color:#DCDCDC;
  color: black;
}

#main-pic {
  margin: 10px 10px 10px 10px;
  border: 5;
  border-style: solid;
  border-color: silver;
}

.content-header {
  padding-bottom:20px;
}

.song-header {
  padding-top: 20px;
  padding-bottom: 20px;
}
              
            
!

JS

              
                
              
            
!
999px

Console