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="navbar">
  <h1 id="header"> STEVE JOBS </h1>
</div>
<br>

<div class="bod">

  <section id="left">
    <p> Steven Paul Jobs (/dʒɒbz/; February 24, 1955 – October 5, 2011) was an American business magnate, industrial designer, investor, and media proprietor. He was the chairman, chief executive officer (CEO), and co-founder of Apple Inc., the chairman and majority shareholder of Pixar, a member of The Walt Disney Company's board of directors following its acquisition of Pixar, and the founder, chairman, and CEO of NeXT. Jobs is widely recognized as a pioneer of the personal computer revolution of the 1970s and 1980s, along with Apple co-founder Steve Wozniak.

    Jobs was born in San Francisco, California, and put up for adoption. He was raised in the San Francisco Bay Area. He attended Reed College in 1972 before dropping out that same year, and traveled through India in 1974 seeking enlightenment and studying Zen Buddhism. His declassified FBI report states that he used marijuana and LSD while he was in college, and once told a reporter that taking LSD was "one of the two or three most important things" he had done in his life.

    Jobs and Wozniak co-founded Apple in 1976 to sell Wozniak's Apple I personal computer. Together the duo gained fame and wealth a year later with the Apple II, one of the first highly successful mass-produced microcomputers. Jobs saw the commercial potential of the Xerox Alto in 1979, which was mouse-driven and had a graphical user interface (GUI). This led to the development of the unsuccessful Apple Lisa in 1983, followed by the breakthrough Macintosh in 1984, the first mass-produced computer with a GUI. The Macintosh introduced the desktop publishing industry in 1985 with the addition of the Apple LaserWriter, the first laser printer to feature vector graphics. Jobs was forced out of Apple in 1985 after a long power struggle with the company's board and its then-CEO John Sculley. That same year, Jobs took a few of Apple's members with him to found NeXT, a computer platform development company that specialized in computers for higher-education and business markets. In addition, he helped to develop the visual effects industry when he funded the computer graphics division of George Lucas's Lucasfilm in 1986. The new company was Pixar, which produced the first 3D computer animated film Toy Story (1995).
    </p>
  </section>
  <section id="right">
    <div id="card">
      <h2>IN A NUTSHELL</h2>
        <img src="https://images-na.ssl-images-amazon.com/images/I/61PdVxgNq8L._AC_SL1200_.jpg">
    </div>
    <div>
        <table id="info">
          <tr>
            <th>Name</th>
            <td>Steven Paul Jobs</td>
          </tr>
          <tr>
            <th>Born</th>
            <td>February 24, 1955 in San Francisco, California, U.S</td>
          </tr>
          <tr>
            <th>Died</th>
            <td>October 5, 2011 (aged 56) at Palo Alto, California, U.S</td>
          </tr>
          <tr>
            <th>Alias</th>
            <td>Pioneer of the personal computer revolution with Steve Wozniak, Co-creator of the Macintosh, iPod, iPhone, iPad, and first Apple Stores.</td>
          </tr>
        </table>
    </div>
  </section>

</div>

              
            
!

CSS

              
                .body{
  margin: 0px 0px 0px 0px;
}

.navbar{
  position: fixed;
  background-color: yellow;
  font-size: 48px;
  width: 150%;
  height: 98px;
  margin: -10px -20px 50px -20px;
}

#header{
  text-align: center;
  top: -10px;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  display: inline-block;
}

.bod{
  margin: 100px 50px 50px 50px;
  width: 95%;
  height: auto;
}

#left{
  margin: auto;
  line-height: 30px;
  float: left;
  width: 60%;
  text-align: justify;
  font-size: 20px;
}

#right{
  margin: auto;
  line-height: 25px;
  float: right;
  width: 35%;
  height: auto;
  text-align: justify;
  font-size: 20px;
  border: 10px solid black;
  background-image: repeating-linear-gradient(to left, #eb4f34, #7734eb); 
}

img{
  border: 15px solid yellow;
  height: 400px;
  width: 300px;
  margin: 2px 30px 10px 60px;
}

h2{
  text-align: center;
  font-family: arial;
}

#info{
  font-size: 17px;
  font-family: arial;
  margin: 0px 10px 15px 10px;
  height: 200px;
  width: inherit;
  line-height: 20px;
}

table{
  padding-top: 0px;
  vertical-align: top;
  border-spacing: 10px;
}

              
            
!

JS

              
                
              
            
!
999px

Console