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

              
                <header id="welcome-section">
  <!--    MAIN NAVIGATION     -->
  <nav id="navbar">
    <a href="#welcome-section">Home</a>
    <a href="#about">About</a>
    <a href="#projects">Projects</a>
    <a href="#contact">Contact</a>
  </nav>

  <!--    HERO TEXT    -->
  <div class="hero-text">
    <h1 >Jessica Wilkins</h1>
    <p class="animate__animated animate__zoomIn">Musician | Programmer</p>
  </div>
</header>

<main>
  <!--    ABOUT SECTION    -->
  <div class="about-section">
    <h2 id="about">About</h2>
    <p>
      For most of my life, I have lived in the arts world as a musician and composer.  
      I was always intrigued by the world of technology but just assumed it wasn't for me. 
      It wasn't until this past June, where I decided to learn how to code so I could create better applications for the arts world. 
      My goal as a programmer is to listen to business and community needs and offer solutions to their problems.
    </p>
  </div>


  <!--    PROJECTS SECTION    --> 
  <h2>Projects</h2>
  <div id="projects" class="projects-section">
    <div class="projects project-tile">
      <img src="https://dl.dropboxusercontent.com/s/7nqo4elwyx9q2is/landing-page.jpeg?dl=0" alt="Super Awesome Desserts Landing page">
      <a class="project-links" href="https://codepen.io/jdwilkin4/full/LYNaBaZ" target="_blank">Live site</a>
      <a class="project-code " href="https://codepen.io/jdwilkin4/pen/LYNaBaZ" target="_blank"><i class="fas fa-code"></i></a>
    </div>
    <div class="projects project-tile">
      <img src="https://dl.dropboxusercontent.com/s/ervqicjsvhxctqj/ella-page.jpeg?dl=0" alt="Ella Fitzgerald Tribute Page">
      <a class="project-links" href="https://codepen.io/jdwilkin4/full/PoNKWmr" target="_blank">Live site</a>
      <a class="project-code" href="https://codepen.io/jdwilkin4/pen/PoNKWmr" target="_blank"><i class="fas fa-code"></i></a>
    </div>
  </div>   
  <div class="projects-section">
    <div class="projects project-tile">
      <img src="https://dl.dropboxusercontent.com/s/qt05x2mcivxdprx/technical-page.jpeg?dl=0" alt="C Technical Page">
      <a class="project-links" href="https://codepen.io/jdwilkin4/full/yLOraQN" target="_blank">Live site</a>
      <a class="project-code" href="https://codepen.io/jdwilkin4/pen/yLOraQN" target="_blank"><i class="fas fa-code"></i></a>
    </div>

    <div class="projects project-tile">
      <img src="https://dl.dropboxusercontent.com/s/m14aq9q4bb4v6v9/band-form.jpeg?dl=0" alt="Band Form">
      <a class="project-links" href="https://codepen.io/jdwilkin4/full/JjXOQyE" target="_blank">Live site</a>
      <a class="project-code" href="https://codepen.io/jdwilkin4/pen/JjXOQyE" target="_blank"><i class="fas fa-code"></i></a>
    </div>
  </div>

  <!--    CONTACT SECTION     -->
  <h2>Let's talk</h2>
  <div id="contact">
    <a id="profile-link" href="https://github.com/jdwilkin4" target="_blank"><i class="fab fa-github-square contact-icons">GitHub</i></a>
    <a href="mailto:[email protected]" target="_blank"><i class="fas fa-envelope contact-icons">Email</i></a>
    <a href="tel:555-555-5555" target="_blank"><i class="fas fa-phone contact-icons">Call</i></a>
  </div> 

</main>

<footer>
  &copy; JDW Designs 2020
</footer>


<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>

              
            
!

CSS

              
                /* Main color used #7c3eca */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Roboto:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
}

/*      HEADER     */

header {
    background: linear-gradient(rgba(0, 0, 0, 0.612), rgba(0, 0, 0, 0.612)), url('https://i.imgur.com/hgLRhq0.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100vh;
}

#navbar {
    position: fixed;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    z-index: 10;
    background-color: white;
}

#navbar a {
    color: black;
    padding: 10px;
    text-decoration: none;
    font-size: 2em;
}

#navbar a:hover {
    background-color: 	#7c3eca;
    color: white;
    border-radius: 50%;
}

.hero-text {
    font-weight: 700;
    color: white;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

h1 {
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 7px;
    font-size: 6em;
    padding: 10px;
}

.hero-text p {
    letter-spacing: 4px;
    font-size: 2.5em;
}

/*      ABOUT SECTION     */


h2 {
    text-align: center;
    color: white;
    background-color: #7c3eca;
    padding: 10px;
    text-transform: uppercase;
    font-size: 3.5em;
    letter-spacing: 3px;
}

.about-section p {
    line-height: 50px;
    font-size: 2.5em;
    padding: 30px;
    margin: 40px;
}

/*      PROJECTS SECTION     */

.projects-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 40px 0;
}

.projects-section img {
    width: 400px;
    height: 300px;
}

.projects {
    margin: 50px;
    position: relative;
}

.project-links, .project-code {
    padding: 10px;
    text-decoration: none;
    color: white;
    background-color:#7c3eca;
    font-size: 1.8em;
    position: absolute;
    bottom: 3px;
}

.project-links {
    left: 0px;
}

.project-code {
    right: 0px;
}


/*      CONTACT SECTION     */

#contact {
    padding: 40px;
    display: flex;
    justify-content: space-evenly;
}

.contact-icons {
    text-align: center;
    color: black;
    margin: 15px;
    padding: 10px;
    font-size: 3em;
}

.contact-icons:hover {
    color: #7c3eca;
}


/*      FOOTER      */

footer {
    letter-spacing: 2px;
    text-align: center;
    padding: 10px;
    color: white;
    background-color: #7c3eca;
    font-size: 1.5em;
}



/*      TABLETS      */
@media (max-width:768px) {
    h1 {
        font-size: 5em;
    }

    .hero-text p {
        font-size: 2.4em;
    }
}

/*      MOBILE      */
@media (max-width:600px) {
    h1 {
        font-size: 4.5em;
    }

    .hero-text p {
        font-size: 1.8em;
    }

    h2 {
        font-size: 3em;
    }

    .about-section p {
        font-size: 2em;
    }
}
              
            
!

JS

              
                
              
            
!
999px

Console