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

              
                <!-- This is a tribute page for Amelia Arsenic created as part of the Free Code Camp curriculum
 
https://www.freecodecamp.com/challenges/build-a-tribute-page-->
<div class = "container-fluid">
  <div class = "row">
    <div class = "col-md-6 col-xs-12 photo">
      <img class = "dotted" src = "https://kohrvid.github.io/FreeCodeCamp/build-a-tribute-page/amelia_arsenic_dangerouslydolly.jpg" alt = "Amelia Arsenic by Dangerously Dolly">
    </div>
    <div class = "col-md-5 col-xs-12">
      <h1 class = "text-info text-right">Amelia Arsenic</h1>
      <p class = "mono text-right">beats + art + fashion</p>
      <p>
        Amelia Arsenic is a visual artist and fashion designer originally from Sydney but now based in London. Having toured extensively throughout Europe and the USA since 2007 as a musician and DJ, Amelia now presents her solo project; a singular vision of broken and beautiful sounds and personal yet playful lyrics.

The sounds of Amelia Arsenic are an infectious injection of high-energy beats infused with feminine allure. Her debut EP "Carbon Black" is a genesis of fresh electronic sounds drawing from hip hop, electro and industrial music. Switching between melodic and spoken vocals, the lyrical themes go from party-mode to provocative pathos effortlessly, painting a self-portrait within an underground zeitgeist.

A cataclysmic big bang of music and style, Amelia Arsenic comes out from the blackness with harsh beats for dark times.
credits
      </p>
      
      <h3 class = "text-info">Discography</h3>
      <div class = "row">
        <div class = "col-md-3 col-xs-3">
          <button id = "angelspit" class = "btn btn-info"><i class = "fa fa-bolt"></i> As part of Angelspit</button>
          <div id = "angelspit_list">
            <ul class = "list-unstyled">
              <li><a href = "https://en.wikipedia.org/wiki/Nurse_Grenade" target = "_blank">Nurse Grenade <em>(2004)</em></a></li>
              <li><a  href = "https://en.wikipedia.org/wiki/Krankhaus" target = "_blank">Krankhaus <em>(2006)</em></a></li>
              <li><a href = "https://en.wikipedia.org/wiki/Blood_Death_Ivory" target = "_blank">Blood Death Ivory <em>(2008)</em></a></li>
              <li><a href = "https://en.wikipedia.org/wiki/Hideous_and_Perfect" target = "_blank">Hideous and Perfect <em>(2009)</em></a></li>
              <li><a href = "https://www.2600.com">Twenty6hundred <em>(2010)</em></a></li>
              <li><a href = "https://en.wikipedia.org/wiki/Carbon_Beauty" target = "_blank">Carbon Beauty <em>(2011)</em></a></li>
              <li><a href = "http://www.angelspit.net/hellomynameis" target = "_blank">Hello My Name Is <em>(2011)</em></a></li>
            </ul>
          </div>
        </div>
        
        <div class = "col-md-offset-6 col-xs-offset-6">
          <button id = "solo" class = "btn btn-info"><i class = "fa fa-bolt"></i> Solo</button>
          <div id = "solo_list">
            <ul class = "list-unstyled">
              <li><a href = "https://ameliaarsenic.bandcamp.com/album/carbon-black" target = "_blank">Carbon Black <em>(2015)</em></a></li>
              <li><a href = "https://glitchmoderecordings.bandcamp.com/track/architects-of-death-glitch-mode-demo" target = "_blank">Architects of Death <em>(2015)</em></a></li>
            </ul>
          </div>
      </div>
    </div>
  </div>
  </div>
  <div class = "row">
    <div class = "col-md-12">
      <br />
      <small class = "mono text-right">Photography by <a href = "http://dangerouslydolly.com/portfolio/" target = "_blank">Dangerously Dolly</a></small>
    </div>
  </div>
</div>
              
            
!

CSS

              
                body {
  background-color: #fff;
}
.photo {
margin: -15px;
}
.dotted{
  border-right: 4px dotted #000; 
  border-bottom: 4px dotted #000;
}
.mono {
  font-family: Monospace;
}
#angelspit_list, #solo_list {
  padding-left: 7px;
}
              
            
!

JS

              
                $(document).ready(function() {
  $("#angelspit_list").hide();
  $("#solo_list").hide();
  $("button").click(function(){
    $(this).addClass("animated shake");
  });
  $("#angelspit").click(function(){
    $("#angelspit_list").toggle("slow");
  });
  $("#solo").click(function(){
    $("#solo_list").toggle("slow");
  });
});
              
            
!
999px

Console