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 URL's 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 it's URL and the proper URL extention.
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 Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
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.
<body>
<form>
<h1 id="title"> Employee satisfaction form</h1>
<p id="description"> Thank you for taking this survey! We are interested in learning more about your experience in our company and what we can do to improve your working environment and expectations.</p>
<fieldset>
<label class="center">Enter your name <input type="text" name="first-name" required placeholder="Enter your name.." />
</label>
<label class="center">Email <input type="email" name="email" required placeholder="Enter your email.." /></label>
<label class="center">Enter your department <input type="text" name="department" required placeholder="Enter your department" /></label>
</fieldset>
<fieldset>
<label class="center"> How many years have you been working for the company?
<select name="years">
<option value="">(select one)</option>
<option value="1-2">1-2</option>
<option value="2-5">2-5</option>
<option value="5-7">5-7</option>
</select>
</label>
<label class="center"> How would you describe your overall level of satisfaction?
<label><input type="radio" name="satisfaction" value="very satisfied" class="inline"/> Very satisfied</label>
<label><input type="radio" name="satisfaction" value="somewhat satisfied" class="inline"/>Somewhat satisfied </label>
<label><input type="radio" name="satisfied" value="Neutral" class="inline"/>Neutral</label>
<label><input type="radio" name="satisfied" value="Disatisfied" class="inline"/> Disatisfied</label>
</label>
</fieldset>
<fieldset>
<label class="center"> Please select the option that you feel is true for your experience at the company.
<label><input type="checkbox" name="truth" value="culture" class="inline"/> I enjoy the company's culture</label>
<label><input type="checkbox" name="truth" value="feedback" class="inline"/> The managers always give good feedback</label>
<label><input type="checkbox" name="truth" value="valued" class="inline"/> I feel valued at work</label>
<label><input type="checkbox" name="truth" value="skills" class="inline"/> I have adequate opportunites to develop my skills</label>
<label><input type="checkbox" name="truth" value="fair" class="inline"/> My work is evaluated based on a fair system of performance standards</label> </label>
<fieldset>
<label class="center"> Any comments or suggestions?
<textarea name="comments"
cols="60"
rows="8"
placeholder="Type here.." ></textarea>
</label>
</fieldset>
<input type="submit" value="Submit" />
</form>
</body>
html {
background: url(https://i.postimg.cc/MG4232Pj/pinkandblue.jpg) no-repeat center center fixed;
background-size: cover;
font-family: "urbanist", sans-serif;
}
Body {
width: 100%;
height: 100vh;
margin: 0;
}
Form{
width: 70vw;
max-width: 700px;
/* makes the form width wider */
min-width: 300px;
margin: 0 auto;
/* pushes form to the center of the page */
margin-bottom: 2em;
background-color: white;
}
h1 {
text-transform: uppercase;
}
h1, p {
margin: 1em auto;
text-align: center;
}
fieldset {
padding: 2em 0;
border: none;
}
label {
display: block;
margin: 1rem 0 1rem 1rem;
}
/* block puts labels under one another */
input,
select,
textarea {
margin: 10px 0 0 0;
width: 95%;
min-height: 2em;
}
/* margin top creates space between different elements width puts the labels above the input area min height makes input box thicker */
input, textarea {
border: 2px outset #808080;
border-radius: 8px;
}
.inline {
width: unset;
margin: 0 0.5em 0 0;
vertical-align: middle;
}
/* unset removes the prior rules applied to the other input elements vertical align makes sure inputs and labels are are on the same line*/
input[type="submit"] {
display: block;
width: 60%;
margin: 1em auto;
height: 2em;
font-size: 1.1em;
border-color: gray;
min-width: 300px;
}
/* margin pushes the button to the center */
// !! IMPORTANT README:
// You may add additional external JS and CSS as needed to complete the project, however the current external resource MUST remain in place for the tests to work. BABEL must also be left in place.
/***********
INSTRUCTIONS:
- Select the project you would
like to complete from the dropdown
menu.
- Click the "RUN TESTS" button to
run the tests against the blank
pen.
- Click the "TESTS" button to see
the individual test cases.
(should all be failing at first)
- Start coding! As you fulfill each
test case, you will see them go
from red to green.
- As you start to build out your
project, when tests are failing,
you should get helpful errors
along the way!
************/
// PLEASE NOTE: Adding global style rules using the * selector, or by adding rules to body {..} or html {..}, or to all elements within body or html, i.e. h1 {..}, has the potential to pollute the test suite's CSS. Try adding: * { color: red }, for a quick example!
// Once you have read the above messages, you can delete all comments.
Also see: Tab Triggers