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>
  <head>
    <title>Sample Resume</title>
  </head>
  
  <body>
    <div>
      <h1>Matthew Wilson</h1>
      <address>
        408 Sandy Lake Dr., Holland, MI  49423<br/>
        (200)600-3999, MWilson@gmail.com
      </address>
    </div>
    
    <h2>Education</h2>
    <div>
      <div class="DateRange">May 20XX</div>
        <p><span class="school">Hope College</span>, Holland MI</p>
        <ul>
          <li>Bachelor of Arts: Management</li>
          <li>Minor: French</li>
          <li>G.P.A: 3.7 / 4.0</li>
        </ul>
      </div>
    </div>
  
    <div>
      <div class="DateRange">May 20XX</div>
      <p><span class="school">Vienna Summer School</span>, Vienna, Austria</p>
      <ul>
        <li>Studied religion and traveled on weekends to Salzburg, Austria and Prague, Czech Republic</li>
      </ul>
    </div>
  
    <h2>College Awards</h2>
    <ul>
      <li>Presidential Scholarship</li>
    </ul>
  
    <h2>Marketing &amp; Sales Experience</h2>
    <div>
      <div class="DateRange">May 20XX-Present</div>
      <p><span class="company">Echo Design</span>, Marketing Intern, Holland, MI</p>
      <ul>
        <li>Update marketing campaign for new product line releasing next season</li>
        <li>Design new marketing materials to create interest in new product line</li>
        <li>Revise website for company to help customers navigate information and to increase sales by 15%</li>
        <li>Create advertising videos to showcase new products and increase engagement with company</li>
      </ul>
    </div>
  
    <div>
      <div class="DateRange">June 20XX-August 20XX</div>
      <p><span class="company">Lakewater Industries</span>, Sales and Shipping Intern, Spring Lake, MI</p>
      <ul>
        <li>Conducted sales calls introducing new products to customers over the phone</li>
        <li>Shipped hundreds of orders to customers in a timely fashion</li>
        <li>Utilized social media platforms in increase marketing and sales by 22%</li>
      </ul>
    </div>
  
  
    <h2>Other Experience</h2>
    <div>
      <div class="DateRange">June 20XX-August 20XX</div>
      <p><span class="company">Bistro 1</span>, Server, Grand Haven, MI</p>
      <ul>
        <li>Provided customer service to 100-150 clientele per day</li>
        <li>Developed multi-tasking and problem solving skills working on a small team of 3</li>
      </ul>
    </div>
  
    <div>
      <div class="DateRange">June 20XX-January 20XX</div>
      <p><span class="company">Creative Events</span>, In-shop Personnel, Lansing, MI</p>
      <ul>
        <li>Prepared food for customers, ensured store cleanliness, and operated the cash register</li>
        <li>Worked with individual customers on event planning details and catering requests</li>
        <li>Assisted with preparation for catering and events and dining services during events</li>
      </ul>
    </div>
  
    <h2>College Activities</h2>
    <div>
      <div class="DateRange">Fall 20XX-Present</div>
      <p><span class="organization">Hope College Business Club</span>, President</p>
      <ul>
        <li>Selected by peers as President for the 2012 – 2013 academic year</li>
        <li>Lead a group of 25 peers in the planning and executing of special events</li>
        <li>Communicate with faculty and staff regarding campus initiatives and programs</li>
      </ul>
    </div>
  
    <div>
      <div class="DateRange">Spring 20XX-Present</div>
      <p><span class="organization">Pan-Hellenic Council</span>, Representative</p>
      <ul>
        <li>
          Nominated and selected to represent the Omicron Kappa Epsilon fraternity on the 
          governing body for Greek organizations, setting policy for the 8 fraternities through a three year leadership position
        </li>        
      </ul>
    </div>  
  
  </body>
</html>
  
              
            
!

CSS

              
                body {
  max-width: 900px;
}
              
            
!

JS

              
                
              
            
!
999px

Console