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

              
                <head>
  <link href="https://fonts.googleapis.com/css?family=Baloo+Bhai" rel="stylesheet"> 
  <link href="https://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet">
  <link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet"> 
  <title> Hello World </title>
</head>

<body>
  <div id="animate-area">
    <h1 class="header1"><b> This Is Some h1 Text</b></h1>
    <div class="box1">Lorem ipsum dolor sit amet, sea ei tollit officiis, ignota sapientem at mea. Vim te platonem instructior, liber facilisi corrumpit mei no, ut eam ullum falli regione. His at possim indoctum theophrastus, pro minimum intellegam interesset at. Id eros iudicabit gloriatur est, vim no putent putant probatus.

Ea quando pericula consequat mel. In quem dicta probatus cum. Id rebum vocibus his, nonumy virtute mea ei. Case tractatos abhorreant nam an.

Sit at sint antiopam, vix corrumpit disputando an. No regione principes vix, ei vel accusam accumsan, te quod sonet ceteros mel. Sit unum dolor putent ad, eu duo solum soleat, ei soluta albucius intellegat his. Discere albucius deterruisset nec ad, mea audire consequat ex, in doming audiam per. In hinc ignota salutatus sea. Qui audire volumus eu, natum omnium vis cu.

Ne mea suscipit vivendum adolescens. Sea ne sonet munere omittantur, prima scaevola consectetuer pri ei. Feugiat instructior ius ei. Id pro aperiri senserit imperdiet, has te sale iudico accommodare. Eum te cibo wisi tation, quodsi sensibus ad sea.
</div>
    <div class="collumn1"><i>
      Lorem ipsum dolor sit amet, sea ei tollit officiis, ignota sapientem at mea. Vim te platonem instructior, liber facilisi corrumpit mei no, ut eam ullum falli regione. His at possim indoctum theophrastus, pro minimum intellegam interesset at. Id eros iudicabit gloriatur est, vim no putent putant probatus.

Ea quando pericula consequat mel. In quem dicta probatus cum. Id rebum vocibus his, nonumy virtute mea ei. Case tractatos abhorreant nam an.

      </i>
    </div>
    <div class="box1"><p>Lorem ipsum dolor sit amet, sea ei tollit officiis, ignota sapientem at mea. Vim te platonem instructior, liber facilisi corrumpit mei no, ut eam ullum falli regione. His at possim indoctum theophrastus, pro minimum intellegam interesset at. Id eros iudicabit gloriatur est, vim no putent putant probatus.

Ea quando pericula consequat mel. In quem dicta probatus cum. Id rebum vocibus his, nonumy virtute mea ei. Case tractatos abhorreant nam an.

Sit at sint antiopam, vix corrumpit disputando an. No regione principes vix, ei vel accusam accumsan, te quod sonet ceteros mel. Sit unum dolor putent ad, eu duo solum soleat, ei soluta albucius intellegat his. Discere albucius deterruisset nec ad, mea audire consequat ex, in doming audiam per. In hinc ignota salutatus sea. Qui audire volumus eu, natum omnium vis cu.</p>
</div>
    <h2 class="header1"><b> This Is Some h2 Text</b></h2>
    <a id="link" href="https://bluefruitgaming.co.uk/aether/"> Troll </a>
    
    <blockquote>“If In doubt, burn it.” - No one ever</blockquote>
   </div>
</body>



              
            
!

CSS

              
                @font-face {
  font-family: 'Baloo Bhai', cursive;
  src: url(https://fonts.googleapis.com/css?family=Baloo+Bhai);
  
  font-family: font-family: 'Indie Flower', cursive;
  src: url(https://fonts.googleapis.com/css?family=Indie+Flower);
  
  font-family: font-family: 'PT Sans', sans-serif;
  src: url(https://fonts.googleapis.com/css?family=PT+Sans)
}

@keyframes animatedBackground {
	from { background-position: 0 0; }
	to { background-position: 100% 0; }
}
#animate-area	{  
	background-image: url(https://openclipart.org/image/2400px/svg_to_png/251603/1465582248.png);
	background-position: 0px 0px;
	background-repeat: repeat-x;
	animation: animatedBackground 30s linear infinite;
  position: relative;
  height: 100%;
  width: 100%;
}

.header1 {
  font-family: 'Baloo Bhai', cursive;
  text-align: center;
}
.box1 {
  font-family: 'Indie Flower', cursive;
  border: 2px solid #ff6600;
  border-radius: 25px;
  margin-left: 300px ;
  margin-right: 300px ;
  margin-bottom: 10px;
  padding: 10px;
  text-align: center;
}

.collumn1 {
  font-family: 'PT Sans', sans-serif;
  border-radius: 25px;
  margin-left: 300px ;
  margin-right: 300px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
  text-align: center;
  position: relative;
  column-count: 3;
  column-gap: 40px;
  column-rule-style: solid;
  column-rule-width: 2px;
  column-rule-color: #ff6600;
  column-span: all;
  column-width: 100px;
  height: 104px;
}

#link {
  text-align: center;
}
blockquote {
  text-align: center;
}
              
            
!

JS

              
                
              
            
!
999px

Console