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.
<body>
<div id="content">
After 2 seconds, move your mouse cursor above this page.
</div>
<div id="news-signup">
<div class="wrapper">
<div id="news-signup_close"></div>
<div class="newsletter-content" id="phplistsubscriberesult">
<h2>Social media, Hacks & Security news. Delivered weekly.</h2>
<p>Join thousands of readers who get our content first.</p>
<form class="signup-form" id="signup-form" action="https://ashwinco.hosted.phplist.com/lists/?p=subscribe&id=1">
<p>
<input type="text" name="email" id="news_signup_email" value="" autofocus>
</p>
<p class="button">
<input type="submit" value="Subscribe">
</p>
</form>
<p class="footnote">Give it a try. It only takes a click to unsubscribe.</p>
</div>
</div>
</div>
</body>
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
html{
width:100%;
height:100%;
}
body{
margin:0;
margin-top:20px;
font: 100 16px/1em 'Roboto Slab', serif;
color:#fff;background: #F1F2B5;
background: -webkit-linear-gradient(to left, #F1F2B5 , #135058);
background: linear-gradient(to left, #F1F2B5 , #135058);
}
#content {
position: relative;
padding: 0;
top: 50%;
transform: translateY(100%);
text-align: center;
max-width: none;
}
input, button {
-webkit-appearance: none;
border-radius: 0;
outline: none;
resize: none;
font-family: 'Roboto Slab', serif;
-webkit-font-smoothing: antialiased
}
p.button input{
display: inline-block;
background: #FFD800;
border: 0;
color: #000;
line-height: 1em;
font-weight: 400;
text-transform: uppercase;
cursor: pointer;
-moz-transition: background 0.3s;
-o-transition: background 0.3s;
-webkit-transition: background 0.3s;
transition: background 0.3s
}
p.button input:hover {
background: #FF9000
}
form {
display: inline-block;
margin-bottom: 31px
}
form input {
font: 300 18px/1em 'Roboto Slab', serif;
color: #000000
}
form input[type=text] {
background: #fff;
line-height: 1em;
border: 1px solid #d4d7da;
height: 50px
}
#news-signup{
position: fixed;
width: 100%;
visibility: hidden;
z-index: 10002;
top: 100px;
opacity: 0;
-webkit-transform: scale(0.5);
transform: scale(0.5);
-webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
}
#news-signup .wrapper {
/*background: #252b33;*/
background: #948E99;
background: -webkit-linear-gradient(to left, #252b33 , #2E1437);
background: linear-gradient(to left, #252b33 , #2E1437);
position: relative;
margin: 0 auto;
text-align: center;
-moz-border-radius: 3px;
box-shadow: 0px 1px 10px rgba(0,0,0,0.5);
width: 98%
}
#news-signup_bg {
visibility: hidden;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #ffffff;
opacity: 0.4;
z-index: 10001;
}
#news-signup_close {
position: absolute;
left: 100%;
margin: 7px 0 0 -30px;
width: 20px;
height: 20px;
color: #fff;
opacity:0.3;
cursor: pointer;
}
#news-signup_close::before {
content: "×";
font: 400 26px/1em 'Roboto Slab', serif;
}
#news-signup_close:hover {
opacity:0.8;
}
#news-signup .newsletter-content {
padding: 100px 3px;
margin: 0 auto
}
#news-signup .newsletter-content h2 {
font: 300 24px/1em 'Roboto Slab', serif;
color: #fff;
text-align: center;
margin: 0 auto 15px
}
#news-signup .newsletter-content p {
margin: 0 auto 25px;
font: 300 16px/1em 'Roboto Slab', serif;
color: #7e8890
}
#news-signup .newsletter-content form {
margin: 0;
padding: 0;
width: 90%;
}
#news-signup .newsletter-content form p {
margin: 0 auto 10px
}
#news-signup .newsletter-content form p:not(.button) {
float: none;
width: 100%;
}
#news-signup .newsletter-content form p:not(.button) input {
width: 100%;
margin: 0;
padding: 12px 15px !important;
border-color: #d0d5d8
}
#news-signup .newsletter-content form .button {
float: none;
width: 100%
}
#news-signup .newsletter-content form .button input {
width: 100%;
padding: 20px 25px 18px !important;
font-size: 12px
}
#news-signup .newsletter-content p.footnote {
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.8;
font: 100 11px 'Roboto Slab', serif;
color: #abb0b7;
margin-bottom: 0
}
@media screen and (min-width: 800px){
#news-signup .wrapper {
width: 800px;
margin: 7% auto;
}
#news-signup .newsletter-content form .button input {
width: auto;
margin: 0
}
#news-signup .newsletter-content form .button {
float: left;
width: auto;
margin-left: 15px;
}
#news-signup .newsletter-content form {
width: auto
}
#news-signup .newsletter-content form p {
margin: 0 auto 15px
}
#news-signup .newsletter-content form p:not(.button) {
float: left;
width: auto
}
.newsletter-content form p:not(.button) input {
width: 300px!important;
margin: 0 15px 0 0
}
}
window.bioEp = {
// Private variables
bgEl: {},
popupEl: {},
closeBtnEl: {},
shown: false,
overflowDefault: "visible",
// Popup options
html: "",
css: "",
fonts: [],
delay: 2,
showOnDelay: false,
cookieExp: 30,
// Object for handling cookies, taken from QuirksMode
// https://www.quirksmode.org/js/cookies.html
cookieManager: {
// Create a cookie
create: function(name, value, days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
expires = "; expires=" + date.toGMTString();
}
document.cookie = name + "=" + value + expires + "; path=/";
},
// Get the value of a cookie
get: function(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(";");
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == " ") c = c.substring(1, c.length);
if (c.indexOf(nameEQ) === 0) return c.substring(nameEQ.length, c.length);
}
return null;
},
// Delete a cookie
erase: function(name) {
this.create(name, "", -1);
}
},
// Handle the bioep_shown cookie
// If present and true, return true
// If not present or false, create and return false
checkCookie: function() {
// Handle cookie reset
if (this.cookieExp <= 0) {
this.cookieManager.erase("bioep_shown");
return false;
}
// If cookie is set to true
if (this.cookieManager.get("bioep_shown") == "true")
return true;
// Otherwise, create the cookie and return false
this.cookieManager.create("bioep_shown", "true", this.cookieExp);
return false;
},
// Add font stylesheets and CSS for the popup
addCSS: function() {
// Add font stylesheets
for (var i = 0; i < this.fonts.length; i++) {
var font = document.createElement("link");
font.href = this.fonts[i];
font.type = "text/css";
font.rel = "stylesheet";
font.rel = "stylesheet";
document.head.appendChild(font);
}
},
// Add the popup to the page
addPopup: function() {
// Add the background div
this.bgEl = document.createElement("div");
this.bgEl.id = "news-signup_bg";
document.body.appendChild(this.bgEl);
// Add the popup
if (document.getElementById("news-signup"))
this.popupEl = document.getElementById("news-signup");
else {
this.popupEl = document.createElement("div");
this.popupEl.id = "news-signup";
this.popupEl.innerHTML = this.html;
document.body.appendChild(this.popupEl);
}
},
// Show the popup
showPopup: function() {
if (this.shown) return;
this.bgEl.style.visibility = "visible";
this.popupEl.style.visibility = "visible";
this.popupEl.style.opacity = "1";
this.popupEl.style.transform = "scale(1)";
this.popupEl.style.webkitTransform = "scale(1)";
this.popupEl.style.transition = "0.4s, opacity 0.4s";
this.popupEl.style.webkitTransform = "0.4s, opacity 0.4s";
// Save body overflow value and hide scrollbars
this.overflowDefault = document.body.style.overflow;
document.body.style.overflow = "hidden";
this.shown = true;
},
// Hide the popup
hidePopup: function() {
this.bgEl.style.visibility = "hidden";
this.popupEl.style.visibility = "hidden";
this.popupEl.style.opacity = "0";
this.popupEl.style.transform = "scale(0.5)";
this.popupEl.style.webkitTransform = "scale(0.5)";
this.popupEl.style.transition = "0.2s, opacity 0.2s, visibility 0s 0.2s";
this.popupEl.style.webkitTransform = "0.2s, opacity 0.2s, visibility 0s 0.2s";
document.body.style.overflow = this.overflowDefault;
},
// Event listener initialisation for all browsers
addEvent: function(obj, event, callback) {
if (obj.addEventListener)
obj.addEventListener(event, callback, false);
else if (obj.attachEvent)
obj.attachEvent("on" + event, callback);
},
// Load event listeners for the popup
loadEvents: function() {
// Track mouseout event on document
this.addEvent(document, "mouseout", function(e) {
e = e ? e : window.event;
var from = e.relatedTarget || e.toElement;
// Reliable, works on mouse exiting window and user switching active program
if (!from || from.nodeName === "HTML")
bioEp.showPopup();
});
// Handle the popup close button
this.closebtn = document.getElementById("news-signup_close");
this.addEvent(this.closebtn, "click", function() {
bioEp.hidePopup();
});
},
// Set user defined options for the popup
setOptions: function(opts) {
this.html = (typeof opts.html === 'undefined') ? this.html : opts.html;
this.css = (typeof opts.css === 'undefined') ? this.css : opts.css;
this.fonts = (typeof opts.fonts === 'undefined') ? this.fonts : opts.fonts;
this.delay = (typeof opts.delay === 'undefined') ? this.delay : opts.delay;
this.showOnDelay = (typeof opts.showOnDelay === 'undefined') ? this.showOnDelay : opts.showOnDelay;
this.cookieExp = (typeof opts.cookieExp === 'undefined') ? this.cookieExp : opts.cookieExp;
},
// Ensure the DOM has loaded
domReady: function(callback) {
(document.readyState === "interactive" || document.readyState === "complete") ? callback(): this.addEvent(document, "DOMContentLoaded", callback);
},
// Initialize
init: function(opts) {
// Handle options
if (typeof opts !== 'undefined')
this.setOptions(opts);
// Add CSS here to make sure user HTML is hidden regardless of cookie
this.addCSS();
// Once the DOM has fully loaded
this.domReady(function() {
// Handle the cookie
if (bioEp.checkCookie()) return;
// Add the popup
bioEp.addPopup();
// Load events
setTimeout(function() {
bioEp.loadEvents();
if (bioEp.showOnDelay)
bioEp.showPopup();
}, bioEp.delay * 1000);
});
}
}
window.onload = function() {
document.getElementById("news_signup_email").focus();
};
bioEp.init({
fonts: ['https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300'],
cookieExp: 0
});
$(document).ready(function() {
var h = new Image();
h.src = waitImage;
$("#signup-form").submit(function() {
var d = $("#news_signup_email").val();
var e = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
var f = this.action;
ajaxaddress = f.replace(/subscribe/, 'asubscribe');
$('#signup-form').html('<img src="' + h.src + '" width="' + h.width + '" height="' + h.height + '" border="0" alt="Please wait" title="hacker9 newsletter" />');
if (e.test(d)) {
var g = $.ajax({
type: 'POST',
url: ajaxaddress,
crossDomain: true,
data: "email=" + d,
success: function(a, b, c) {
if (a.search(/FAIL/) >= 0) {
document.location = f + "&email=" + d
} else {
$('#phplistsubscriberesult').html("<div id='subscribemessage'></div>");
$('#subscribemessage').html(a).hide().fadeIn(1500);
$("#signup-form").hide();
document.cookie = "phplistsubscribed=yes"
}
},
error: function(a, b, c) {
document.location = f + "&email=" + d
}
})
} else {
document.location = f + "&email=" + d
}
return false
});
$("#news_signup_email").val(pleaseEnter);
$("#news_signup_email").focus(function() {
var v = $("#news_signup_email").val();
if (v == pleaseEnter) {
$("#news_signup_email").val("")
}
});
$("#news_signup_email").blur(function() {
var v = $("#news_signup_email").val();
if (v == "") {
$("#emailaddress").val(pleaseEnter)
}
});
var i = document.cookie;
if (i.indexOf('phplistsubscribed=yes') >= 0) {
$("#signup-form").html(thanksForSubscribing)
}
});
$.ajaxTransport("+*", function(d, e, f) {
if (jQuery.browser.msie && window.XDomainRequest) {
var g;
return {
send: function(b, c) {
g = new XDomainRequest();
g.open("get", d.url + "&" + d.data);
g.onload = function() {
if (this.contentType.match(/\/xml/)) {
var a = new ActiveXObject("Microsoft.XMLDOM");
a.async = false;
a.loadXML(this.responseText);
c(200, "success", [a])
} else {
c(200, "success", [this.responseText])
}
};
g.ontimeout = function() {
c(408, "error", ["The request timed out."])
};
g.onerror = function() {
c(404, "error", ["The requested resource could not be found."])
};
g.send()
},
abort: function() {
if (g) g.abort()
}
}
}
});
if (pleaseEnter == undefined) {
var pleaseEnter = "Enter your email"
}
if (thanksForSubscribing == undefined) {
var thanksForSubscribing = '<div class="subscribed">Thanks for subscribing. Please click the link in the confirmation email you will receive.</div>'
}
if (waitImage == undefined) {
var waitImage = 'https://s3.amazonaws.com/phplist/img/busy.gif'
}
Also see: Tab Triggers