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

              
                <html>
<!--
Tip 1: To help you and others understand what code you wrote, write comments!
Tip 2: Indent your code for easy reading and editing.  
Tip 3: For background to use in your website, check out: http://wildtextures.com
Tip 4: For images to use in your website, check out: https://images.google.com

<!-- The head includes the title, which is similar to a filename and is used to identify your webpage but is not displayed on the page-->
<head>
    <title> ThinkSTEAM</title>
</head>
<!-- Main webpage design defined in the BODY section of html code. -->
  
<body style="font-family: Futura; font-size:15px; color:#ecf0f1; font-weight: lighter">
    <div class="container" style="width: 100%; height:auto">

      <! This is where you change the header background image>
      <div class="header" style="background-color:#33cccc; background-size: 900px; height:150px; border: 3px solid black">
          <br>
          <h1 style="text-align: center; font-size: 70px; font-weight: lighter; color:black; margin-top:5px;">ThinkSTEAM</h1>
      </div>
      <! This is where you change the side bar>
      <div class="sidebar" style= "background-color:#f212a2; height:1200px; width:20%; float:left; border-left: 3px solid black; border-right: 3px solid black">
          <h2 style="font-size:15px; margin: 10px">ThinkSTEAM Menu</h2>
          <ol style="list-style-type: 1; margin-left:-10px; line-height:30px; text-decoration: none;">
              <li><a href="#STEAM-A-THON" style="color:#ecf0f1;">STEAM-A-THON</a></li>
              <li><a href="#Code Matters" style="color:#ecf0f1;">Code Matters</a></li>
  		              </ol>   
       </div> 
<! This is where you change the background on the main part of your page and add a description of services>    
      <div class="main" style="background-color: #ecf0f1; height:1200px; width:78.7%; float:left; border-right: 3px solid black">
      <p style="color: #f212a2; font-weight:lighter; font-size:0.9em; margin-left:33%; margin-right:10%;"><b>
        Empower, Enable, Encourage girls to excel!
        </b></p>
      <br>
      <h1 style="color: black; text-align:center"> ThinkSTEAM Events</h1>
        <h3 style="color: #f212a2; text-align:center"> STEAM-A-THON Goodies</h3>
    	<table align="center" border="1px solid black">
     		 <tr bgcolor=#33cccc>
    <! This is where you begin to insert your images into the table>
        		<td align="center" style="padding:10px">
              <img src="http://www.thinksteam4girls.org/wp-content/uploads/2017/12/VR-768x512.jpg" height="120" width="150">
        		</td>
            		<td align="center" style="padding:10px">
              <img src="http://www.thinksteam4girls.org/wp-content/uploads/2017/12/backpack.png" height="120" width="150">
           </td>
           <td align="center" style="padding:10px">
              <img src="http://www.thinksteam4girls.org/wp-content/uploads/2017/12/steam-a-thonshirts-768x512.jpg" height="120" width="150">
           </td>
        </tr>
        <tr bgcolor=black>
           <td style="padding: 10px">ThinkSTEAM Virtual Reality Goggles 
        <br/>from Utopia
             </td>
        	 <td style="padding: 10px">ThinkSTEAM Knapsack
           </td>
        	 <td style="padding: 10px">ThinkSTEAM STEAM-A-THON T-Shirt
           </td>
        </tr>
     </table>
       
      </div>
  </body>
</html>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console