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

              
                <!--Example of Color Input Type-->
				<input type="color" value="#34aaff">
<hr>

<p>Example using JavaScript. Here, a user will select a color using the color picker and recolor the blockquote</p>
<!--Add Id to some elements to use them in Javascript Below-->
 	    	<div> 
 	    		<form><fieldset>
  				  <blockquote id="myQuote"> <p>My season to excel has come, I believe that with the amount of effort I am putting in coding, I will become an expert web designer in less that 3 months.</p><cite> - By Anonymous</cite>
  				  </blockquote>
  				<p>Select a color from a color picker below to color the quotation above.</p>
  				<label for="colorChange">Select a Color:</label><input type="color" value="#00ee00" id="colorChange">
  				</fieldset></form>
  			</div>
              
            
!

CSS

              
                p{font-weight: bold}
              
            
!

JS

              
                				var colorChange;
				var initialColor = "#00ee00";
				window.addEventListener("load", startChangeColor, false);
				
				function startChangeColor(){
					colorChange = document.getElementById("colorChange");
					colorChange.value = initialColor;
					colorChange.addEventListener("input", updateColor, false);
					colorChange.select();
					}
				
				function updateColor(event){
					var myQuote = document.getElementById("myQuote");
					if (myQuote) {myQuote.style.color=event.target.value;}
					}

              
            
!
999px

Console