HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
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.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
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.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
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.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<div class="container">
<form class="registration">
<h1>Registration Form</h1>
<label for="username">
<span>Username</span>
<input type="text" id="username" minlength="3" required>
<ul class="input-requirements">
<li>At least 3 characters long</li>
<li>Must only contain letters and numbers (no special characters)</li>
</ul>
</label>
<label for="password">
<span>Password</span>
<input type="password" id="password"
maxlength="100" minlength="8" required>
<ul class="input-requirements">
<li>At least 8 characters long (and less than 100 characters)</li>
<li>Contains at least 1 number</li>
<li>Contains at least 1 lowercase letter</li>
<li>Contains at least 1 uppercase letter</li>
<li>Contains a special character (e.g. @ !)</li>
</ul>
</label>
<label for="password_repeat">
<span>Repeat Password</span>
<input type="password" id="password_repeat" maxlength="100" minlength="8" required>
</label>
<br>
<input type="submit">
</form>
</div>
/* General layout */
html {
font-size: 62.5%;
}
body {
font-size: 1.6rem;
line-height: 1.6;
font-family: 'Source Sans Pro';
background-color: rgb(245, 245, 245);
}
h1 {
font-size: 2.5rem;
padding: 15px 20px;
background-color: rgba(255, 219, 58, 0.3);
margin-bottom: 20px;
text-align: center;
}
a {
text-decoration: underline;
color: inherit;
}
.container {
margin: 80px auto;
width: 90%;
max-width: 800px;
}
.registration {
background-color: #fff;
max-width: 600px;
margin: 0 auto;
padding-bottom: 20px;
box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.3);
border-bottom: 5px solid #ffdb3a;
}
.input-requirements {
font-size: 1.3rem;
font-style: italic;
text-align: left;
list-style: disc;
list-style-position: inside;
max-width: 400px;
margin: 10px auto;
color: rgb(150,150,150);
}
.input-requirements li.invalid {
color: #e74c3c;
}
.input-requirements li.valid {
color: #2ecc71;
}
.input-requirements li.valid:after {
display: inline-block;
padding-left: 10px;
content: "\2713";
}
/* FormHack v1.2.0 (formhack.io) */
/* Config ----------------------------- */
:root {
/* Font */
--fh-font-family: 'Source Sans Pro', sans-serif;
--fh-font-size: 15px;
--fh-font-color: rgb(40, 40, 40);
/* Borders */
--fh-border-radius: 3px;
--fh-border-width: 1px;
--fh-border-style: solid;
--fh-border-color: rgb(200, 200, 200);
/* Inputs, Textareas, Select, Option */
--fh-input-height: 40px;
--fh-input-width: 100%;
--fh-input-max-width: 400px;
--fh-input-bg-color: rgb(250,250,250);
--fh-focus-bg-color: var(--fh-input-bg-color);
--fh-focus-border-color: #000;
--fh-focus-font-color: var(--fh-font-color);
/* Select Vendor Styling */
--fh-select-vendor-styling: none; /* comment this out to maintain vendor styling */
/* Buttons & Input Submits */
--fh-button-height: 40px;
--fh-button-width: 100%;
--fh-button-max-width: 200px;
--fh-button-font-color: var(--fh-font-color);
--fh-button-bg-color: rgba(255, 219, 58,0.3);
--fh-button-hover-bg-color: rgb(255, 219, 58);
--fh-button-hover-font-color: var(--fh-font-color);
/* Layout */
--fh-layout-display: block;
--fh-layout-margin: 10px auto; /* change to "10px auto" to center */
--fh-layout-text-align: center;
}
/* Global Reset Styles ------------------ */
input,
textarea,
select,
option,
optgroup,
button,
legend,
fieldset {
box-sizing: border-box;
outline: none;
font-family: var(--fh-font-family);
font-size: var(--fh-font-size);
color: var(--fh-font-color);
vertical-align: top;
display: var(--fh-layout-display);
margin: var(--fh-layout-margin);
text-align: var(--fh-layout-text-align);
}
datalist {
font-family: var(--fh-font-family);
font-size: var(--fh-font-size);
}
label {
display: block;
margin: var(--fh-layout-margin);
text-align: var(--fh-layout-text-align);
margin-bottom: 20px;
position: relative;
padding: 0 20px;
}
/* Input & Textarea ------------------ */
/* Fields with standard width */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="number"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="week"],
input[list],
input[type="file"],
select,
textarea {
width: var(--fh-input-width);
max-width: var(--fh-input-max-width);
padding: calc( var(--fh-input-height) / 5 );
background-color: var(--fh-input-bg-color);
border-radius: var(--fh-border-radius);
border-width: var(--fh-border-width);
border-style: var(--fh-border-style);
border-color: var(--fh-border-color);
}
/* Fields with standard height */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="number"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="week"],
input[list] {
height: var(--fh-input-height);
-webkit-appearance: none;
}
/* Other */
textarea {
-webkit-appearance: none;
overflow: auto;
}
input[type="range"] {
height: var(--fh-input-height);
width: var(--fh-input-width);
max-width: var(--fh-input-max-width);
}
input[type="file"] {
min-height: var(--fh-input-height);
}
input[type="search"] {
height: var(--fh-input-height);
-webkit-appearance: none;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
input[type="checkbox"],
input[type="radio"] {
display: inline-block;
vertical-align: middle;
}
/* For checkbox and radio to be centered, need to wrap the input and label in a span -
/* .checkbox-container {
/* display: block;
/* text-align: center;
/* }
/* Select ------------------ */
select {
height: var(--fh-input-height);
-webkit-appearance: var(--fh-select-vendor-styling, menulist);
-moz-appearance: var(--fh-select-vendor-styling, menulist);
-ms-appearance: var(--fh-select-vendor-styling, menulist);
-o-appearance: var(--fh-select-vendor-styling, menulist);
}
select[multiple] {
height: auto;
min-height: var(--fh-input-height);
padding: 0;
}
select[multiple] option {
margin: 0;
padding: calc( var(--fh-input-height) / 5 );
}
/* Fieldset ------------------ */
fieldset {
padding: 0;
border: 0;
}
legend {
padding: 0;
font-weight: inherit;
}
/* Buttons, Input Type Submit/Reset ------------------ */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="image"] {
height: var(--fh-button-height);
width: var(--fh-button-width);
max-width: var(--fh-button-max-width);
background-color: var(--fh-button-bg-color);
padding: calc( var(--fh-input-height) / 5 );
cursor: pointer;
color: var(--fh-button-font-color);
font-weight: 700;
-webkit-appearance: none;
-moz-appearance: none;
border-radius: var(--fh-border-radius);
border-width: var(--fh-border-width);
border-style: var(--fh-border-style);
border-color: var(--fh-border-color);
box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.2);
}
input[type="image"] {
text-align: center;
padding: calc( var(--fh-input-height) / 5 );
}
/* States ------------------ */
input[disabled],
textarea[disabled],
select[disabled],
option[disabled],
button[disabled] {
cursor: not-allowed;
}
input:focus,
textarea:focus,
select:focus,
option:focus,
button:focus {
background-color: var(--fh-focus-bg-color);
border-color: var(--fh-focus-border-color);
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
outline: var(--fh-focus-border-color) solid 2px;
}
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus {
background-color: var(--fh-button-hover-bg-color);
color: var(--fh-button-hover-font-color);
}
/* Custom ------------------ */
input:not([type="submit"]):valid {
border-color: #2ecc71;
}
/* Hide and show related .input-requirements when interacting with input */
input:not([type="submit"]) + .input-requirements {
overflow: hidden;
max-height: 0;
transition: max-height 1s ease-out;
}
input:not([type="submit"]):hover + .input-requirements,
input:not([type="submit"]):focus + .input-requirements,
input:not([type="submit"]):active + .input-requirements {
max-height: 1000px; /* any large number (bigger then the .input-requirements list) */
transition: max-height 1s ease-in;
}
/* This is where the magic happens 🎉 */
/* This is just a boilerplate if you want to attempt it yourself, for my solution see here - https://bitsofco.de/realtime-form-validation/ */
Also see: Tab Triggers