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="top-bar" class="container-fluid">
  <div class="row-fluid">
    <img id="flash-logo" class="animated fadeInLeft" src="http://www.jasonnatividad.com/images/The_Flash_logo.png">
    
  </div> <!-- End Row fluid --> 
</div> <!-- End Container fluid -->

<div id="main-content" class="container-fluid">
  <div class="row-fluid">
    
    <img id="main-logo" src= "http://www.jasonnatividad.com/images/The_Flash_logo.png">
    
    <h1>The Fastest Man Alive</h1>
    <img id="gotime"class="img-thumbnail animated fadeInRight" src="http://www.jasonnatividad.com/images/gotime.jpeg">
    <div id="the-flash" class="center-block">
      <blockquote>
      <p class"text-center">To the outside world, I'm just an ordinary forensic scientist, but secretly I use my speed to fight crime and find others like me, and one day I'll find who killed my mother and get justice for my father. I am the Flash.</p></blockquote>
    </div>  
    
    <div id="test" class="row-fluid">
      <h2 id="time-line" class="">Timeline:</h2>
      <ul id="time-line-list">
        <li><strong>March 18, 2000</strong>The Reverse-Flash and the Flash travel back into the year 2000 where Reverse-Flash is attempting to kill an 11 year old Barry Allen. The Flash stops him so Reverse-Flash kills Barry's mother Nora Allen before escaping but his connection to the Speed Force drains completely and becomes stranded.</li>
        <li><strong>December 11, 2013 </strong>The Particle Accelerator is turned on and releases Dark Matter from a massive explosion giving Barry Allen his powers of the Speed Force. </li>
        <li><strong>Some time in 2013 </strong>Eobard as Wells has Barry moved to S.T.A.R. Labs to recover and so he can begin to ensure Barry becomes the Flash and becomes fast enough to travel through time so he can return home.</li>
      </ul>  
    </div> <!-- End row fluid --> 
 
    <div id="more-info" class="row-fluid"><p class="text-center">***This information was found on the arrow.wikia.com.  You can get more information about the timeline and different versions of the timeline <a target="_blank" href="http://arrow.wikia.com/wiki/Timeline">here.</a></p>
    </div>
    
  </div>  <!-- End row fluid -->
  <div class="row-fluid">
    
    <h3 class="text-center" >If you have more time you should read more about this awesome superhero on this <a target="_blank" href="https://en.wikipedia.org/wiki/The_Flash_(2014_TV_series)">wikipedia entry</a>.</h3>
    
  </div>  <!-- End row fluid -->
</div> <!-- End container fluid-->
              
            
!

CSS

              
                body {
  background-color: #B81D01;
  color: #E8AF39;
  font-family: QuickSand;
}
#top-bar {
  background-color: #A2002A;
  height: 70px; 
}

#flash-logo {
  height: 15%;
  width: 15%;
}

#main-content {
//  background: url('http://www.jasonnatividad.com/images/theflash.jpg');
  background-color: #B81D01;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 700px;
  
  z-index: 1;
}

#gotime {
  margin: 20px auto 0px auto;
  z-index: 0;
  display: block;
  
  
}

#main-logo {
  margin: 0 auto;
  display: block;
}

h1, h3{
  
  font-style: italic;
  text-align: center;
  
}
#caption-box {
  background-color: #FFFEFE;
  margin: auto;
  padding: 0;
  width: 60%;
  
  
}

#the-flash {
  width: 50%;
  font-size: 17px;
}
#time-line {
  margin-left: 20%;
}

#time-line-list{
  margin-left: 21%;
  
}


#more-info {
  margin: 30px auto;
}


              
            
!

JS

              
                
              
            
!
999px

Console