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

              
                <!DOCTYPE html>
<html>

  <div id='container' class='container'>
    <header id='header'>
<h1 id='title' align='center'> Survey Form</h1>
    </header>
      <h3 id='description' align='center'>Tell us about yourself and how we can improve freeCodeCamp!</h3>
    <body>
    <form id='survey-form' action='mailto:cmcclelland0@gmail.com'>
      
  <fieldset id= 'contactInfo'>
    <legend class='formHeadings'align='center'> Contact Information</legend>
   <div id='nameDiv' align='center'> Name <input id='name' type='text' required placeholder='Enter Name   Here'required>
   <div id='emailDiv' align='center'>Email <input id='email' type='email' required placeholder= 'Enter Email Here'required>
   <div id= 'number' align='center'> Age <input type='number' required placeholder= 'Enter Age Here'required>
         </fieldset><br>
       
     <fieldset id='aboutYouDropdown'>
       <legend class='formHeadings' align='center'>About You</legend>
         <div id='roleDropdown' align='center'>Which role most closely describes your current role:
           <div class='roleDropdown'>
             <select id='roleDropdown' name='currentRole' required>
           <option value=''disabled selected>Select an option</option>
           <option value='student'>Student</option>
           <option value='full-time-job'>Full Time Job</option>
           <option value='full-time-learner'>Full Time Learner</option>
           <option value='prefer-not-to-say'>Prefer Not to Say</option>
           <option value='other'>Other</option>
             </select> 
      </div>
             </fieldset><br>
           
             <fieldset id='recommendRadio'>
        <div id='recommed' align='center'required> How likely is it that you would recommend freeCodeCamp to a friend?<br>
            <input type= 'radio' name='recommend' value='definitely'>Definitely</label><br>
            <input type= 'radio' name='recommend' value='maybe'>Maybe</label><br>
           <input type='radio'name='recommend' value='not-sure'>Not Sure</label>
     </fieldset><br>
       
     <fieldset id='dropdown1'>
          <div id='dropdown1' align='center'> What do you like most about about FCC:
            <div class='dropdown1' align='center'>
            <select id='dropdown1'name='likeMostDropdown' required>
              <option value="" disabled selected>Select an Option</option>
              <option value='challenges'>Challenges</option>
              <option value='projects'>Projects</option>
              <option value='community'>Community</option>
              <option value='open-source'>Open Source</option>
              </fieldset>
              </div>
            
            
            <fieldset id='improveCheckboxes' >
              <div id='improve' align='center'> Things that should be improved in the future (check all that apply):
        <label for='improve'><input id='Front-End Projects'type='checkbox'>Front-End Projects</label><br>
        <label for='improve'><input id='Back-End Projects' type='checkbox'>Back-End Projects</label><br>
        <label for='improve'><input id='Data Visualization' type='checkbox'>Data Visualization</label><br>
        <label for='improve'><input id='Challenges'type='checkbox'> Challenges</label><br>
        <label for='improve'><input id='Open Source Community' type='checkbox'>Open Source             Community</label><br>
        <label for='improve'><input id='Gitter Help Rooms' type='checkbox'>Gitter Help Rooms</label><br>
        <label for='improve'><input id='Videos'type='checkbox'>Videos</label><br>
        <label for='improve'><input id='City meetups' type='checkbox'>City Meetups</label><br>
        <label for='improve'><input id='Wiki'type='checkbox'>Wiki</label><br>
        <label for='improve'><input id='Forum' type='checkbox'>Forum</label><br>
        <label for='improve'><input id='Additional Courses' type='checkbox'>Additional Courses</label>
                </fieldset><br>
                </div>
            
        <div id='textbox' align='center'> Any Comments or suggestions? <input type='text'placeholder='Enter Your Comment Here...'>
          <button type='submit'>Submit</sumbit>
              
                   
                                            </form>
                                             </div>   
                                             </> 
                                          </html>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console