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

              
                <div class="body-wrapper">
  <header>
    <h1 class="title text-centre">This is my (90's) Site!</h1>
    <div class="picheader">
      <img src="http://www.viajejet.com/wp-content/viajes/bosque-de-finlandia.jpg" alt="Header Image" />
    </div>
  <nav role='navigation'>
    <ul>
      <li><a href="#">Home</a></li>
      <li><a href="#">About</a></li>
      <li><a href="#">Contact Us</a></li>
    </ul>
  </nav>	
  </header>
  <main>
    <article>
      <h1 class="title">Home</h1>
      <p>This is a retro web design in HTML5, I want to recreate a typical web page of 90's (approximately '97 '98). There was no javascript, tags like &quot;&lt;font&gt;&quot; or &quot;&lt;color&gt;&quot; and low quality images were used.
</p>
    </article>
        <article>
      <h2 class="title">Really?</h2>
      <p>Yes, not all websites looked like this, but this is a little example.</p>
      <h3>What is the purpose of this?</h3>
      <p>None, I was bored when it occurred to me to do this &gt;:-(</p>
          <h4>Hahaha, HTML5 for this sh***</h4>
          <p>Is there any problem?, send me an e-mail: [email protected]</p>
      </article>
  </main>
  <aside>
		<article>
			<h3 class="title">This design looks like 90's</h3>
      <p>Yeah, serif font, header picture, and basic navigation bar. This reminds me a lot if you not haven't internet before 2002, yourself as the idea was, few pictures (with a speed telephone connection delayed up to two minutes to download {depending on the size})</p>
      <h3 class="title">You like this?</h3>
      <p>Check it out my others works on my profile and follow me! :-)</p>
		</article>
  </aside>
  <footer>
	<h3 class="title">Basically, footer. <small>by me ;-D</small></h3>
  </footer>
</div>
              
            
!

CSS

              
                body{
  font-family:'Times New Roman', serif;
  text-shadow: rgba(0,0,0,.01) 0 0 1px;
  color:#000;
  background:#BEA451;
}
.text-centre{
  text-align:center;
}
.body-wrapper{
  max-width:1000px;
  margin:0 auto;
}
.picheader{
  height:250px;
  overflow:hidden;
}
header nav{
  background:#000;
  color:#fff;
  overflow:hidden;
  padding:10px auto;
}
header nav ul{
  list-style:none;
  overflow:hidden;
}
header nav ul li{
  float:left;
  margin-left: 4px;
  margin-right: 4px;
}
header nav ul li a{
  color:#fff;
  font-size:1.2em
}
article{
  margin: 5px;
  padding: 5px 0;
  border: solid 1px #000;
  overflow: hidden;
  padding-top: 0px;
  background:#fff;
}
.title{
  background: #000;
  color: #fff;
  padding: 5px;
  padding-left: 10px;
  overflow: hidden;
	margin: 0;
  font-weight:bolder;
}
article p, article h1,article h2, article h3, article h4{
  padding:0 15px;
}
main{
  float:left;
  max-width: 68%;
}
aside{
  float:right;
	max-width: 32%;
}
footer{
	width: 100%;
	float: left;
}
              
            
!

JS

              
                
              
            
!
999px

Console