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 class="container-fluid">
  <h1 class="page-header text-center">Benjamin Graham</h1>
   <p class="lead text-center">"The Grandfather of Value Investing"</p>
   <div class="thumbnail">
    <img class="img-responsive center-block" src="http://i.investopedia.com/dimages/graphics/ap510529037.jpg" alt="Image of Benjamin Graham">
    <div class="caption text-center">
     Benjamin Graham
    </div>
  </div>
  <h3>Timeline</h3>
  <hr />
   <ul>
     <li><p><strong>1894 - </strong>Benjamin Grossbaum, born May 9th in London, England.</p></li>
     <li><p><strong>1895 - </strong>Family moved to New York City.</p></li>
     <li><p><strong>1914 - </strong>Graduated Columbia University at the age of 20 years. He was offered a teaching position but decided to work on Wall Street in an effort to provide for his siblibgs and widowed mother. He began working at Newburger, Henderson & Loeb as a messenger.</p></li>
    <li><p><strong>1920 - </strong>After rising quickly throught the ranks he was named partner at the company.</p></li>
    <li><p><strong>1926 - </strong>Working together with partner Jerome Newman, Graham founded an investment partnership.</p></li>
    <li><p><strong>1928 - </strong>Began working as faculty at Columbia University.</p></li>
    <li><p><strong>1929 - </strong>The Great Depression. Because of the testing times during this bear market Benjamin Graham was able to fine tune his techniques that allowed his company to persevere through.</p></li>
     <li><p><strong>1934 - </strong>Published his first book, <em>Security Analysis</em>, with David Dodd.</p></li>
    <li><p><strong>1937 - </strong>Published <em>Storage and Stability: A Modern Ever-normal Granary</em>.</p></li>
     <li><p><strong>1944 - </strong>Published <em>World Commodities and World Currency</em>.</p></li>
    <li><p><strong>1949 - </strong>Published <em>The Intelligent Investor</em>.</p></li>
    <li><p><strong>1955 - </strong>Ended his teaching career at Columbia University.</p></li>
    <li><p><strong>1956 - </strong>The Graham-Newman Corporation was terminated.</p></li>
    <li><p><strong>1976 - </strong>Died.</p></li>
  </ul>
  <blockquote>
   <p>"To achieve satisfactory investment results is easier than most people realize; to achieve superior results is harder than it looks."</p>
   <footer>Benjamin Graham</footer>
  </blockquote>
  <blockquote>
    <p>"<em>The Intelligent Investor</em> is by far the best book on investing ever written"</p>
   <footer>Warren Buffett</footer>
  </blockquote>
  <div class="well">
   <p class="lead">This tribute has been compiled using outside sources. You can find more information via the following links:</p>
   <ul>
     <li><a href="https://en.wikipedia.org/wiki/Benjamin_Graham#See_also">Wikipedia</a> - Benjamin Graham</li>
     <li><a href="http://www.investopedia.com/articles/07/ben_graham.asp">Investopedia</a> - The Intelligent Investor</li>
    </ul>
  </div>
  <hr />
  <p class="text-center">Written and coded by Nicholas James</p>
</div>
              
            
!

CSS

              
                .container-fluid {
  margin: 50px 40px;
}

.well {
  margin-top: 20px;
}

ul {
  list-style: none;
  padding-left: 20px;
}

.thumbnail {
  background-color: #f9f9f9;
}

              
            
!

JS

              
                
              
            
!
999px

Console