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 id="p-wrapper">
<ul id="piano">
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div></li>
<li><a href="#"></a><span></span><b>Home</b></li>
<li><a href="#"></a><span></span><b>About</b></li>
<li><a href="#"></a><span></span><b>Archives</b>
<ul>
<li><a href="#">2007</a></li>
<li><a href="#">2006</a></li>
<li><a href="#">2005</a></li>
<li><a href="#">2004</a></li>
</ul>
</li>
<li><a href="#"></a><b>Search</b>
<div id="search">
<form>
<input type="text" placeholder="Search..." />
</form>
</div>
</li>
<li><a href="#"></a><span></span><b>Contact Me</b>
<div id="contact">
<form>
<input type="text" class="required" placeholder="Name" />
<input type="text" class="required" placeholder="Email" />
<textarea class="required" placeholder="Your messages..."></textarea>
<input type="submit" value="Send" />
<div class="clear"></div>
</form>
</div>
</li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div><span></span></li>
<li><div class="anchor"></div></li>
</ul>
</div>
<div class="credit">
<strong>www.Megawrz.com The Mobile Phone Os Community !</strong><br />
No Images, No JavaScripts! Usable for navigation too <strong style="color:#CE877B;">:)</strong><br />
<div class="credit_ribbon"></div>
</div>
/**
* Pure CSS3 Piano by Taufik Nurrohman
* On: 1 December 2011
* URL: https://hompimpaalaihumgambreng.blogspot.com/
* Note: This experiment is under the God Almighty License.
* Please do not replace or remove the attribution above if you want to save/modify this project legally.
* Good luck!
*/
* {
margin:0px;
padding:0px;
list-style:none;
}
:focus {
outline:none !important;
}
body {
background:#666;
background:-webkit-radial-gradient(bottom left,cover,#999,#666);
background:-moz-radial-gradient(bottom left,cover,#999,#666);
background:-ms-radial-gradient(bottom left,cover,#999,#666);
background:-o-radial-gradient(bottom left,cover,#999,#666);
background:radial-gradient(bottom left,cover,#999,#666);
height:500px;
}
a {
color:indigo;
text-decoration:none;
}
a:hover {
text-decoration:underline;
}
/* Piano Wrapper */
#p-wrapper {
background:#000;
background:-webkit-linear-gradient(-60deg,#000,#333,#000,#666,#333 70%);
background:-moz-linear-gradient(-60deg,#000,#333,#000,#666,#333 70%);
background:-ms-linear-gradient(-60deg,#000,#333,#000,#666,#333 70%);
background:-o-linear-gradient(-60deg,#000,#333,#000,#666,#333 70%);
background:linear-gradient(-60deg,#000,#333,#000,#666,#333 70%);
width:1300px;
position:relative;
left:-20px;
-webkit-box-shadow:0 2px 0px #666,0 3px 0px #555,0 4px 0px #444,0 6px 6px #000,inset 0 -1px 1px rgba(255,255,255,0.5),inset 0 -4px 5px #000;
-moz-box-shadow:0 2px 0px #666,0 3px 0px #555,0 4px 0px #444,0 6px 6px #000,inset 0 -1px 1px rgba(255,255,255,0.5),inset 0 -4px 5px #000;
box-shadow:0 2px 0px #666,0 3px 0px #555,0 4px 0px #444,0 6px 6px #000,inset 0 -1px 1px rgba(255,255,255,0.5),inset 0 -4px 5px #000;
border:2px solid #333;
-webkit-border-radius:0 0 5px 5px;
-moz-border-radius:0 0 5px 5px;
border-radius:0 0 5px 5px;
-webkit-animation:taufik 2s;
-moz-animation:taufik 2s;
animation:taufik 2s;
}
/* Tuts */
ul#piano {
display:block;
width:100%;
height:240px;
border-top:2px solid #222;
}
ul#piano li {
list-style:none;
float:left;
display:inline;
background:#aaa;
width:40px;
position:relative;
}
ul#piano li a,ul#piano li div.anchor {
display:block;
height:220px;
background:#fff;
background:-webkit-linear-gradient(-30deg,#f5f5f5,#fff);
background:-moz-linear-gradient(-30deg,#f5f5f5,#fff);
background:-ms-linear-gradient(-30deg,#f5f5f5,#fff);
background:-o-linear-gradient(-30deg,#f5f5f5,#fff);
background:linear-gradient(-30deg,#f5f5f5,#fff);
border:1px solid #ccc;
-webkit-box-shadow:inset 0 1px 0px #fff,inset 0 -1px 0px #fff,inset 1px 0px 0px #fff,inset -1px 0px 0px #fff,0 4px 3px rgba(0,0,0,0.7);
-moz-box-shadow:inset 0 1px 0px #fff,inset 0 -1px 0px #fff,inset 1px 0px 0px #fff,inset -1px 0px 0px #fff,0 4px 3px rgba(0,0,0,0.7);
box-shadow:inset 0 1px 0px #fff,inset 0 -1px 0px #fff,inset 1px 0px 0px #fff,inset -1px 0px 0px #fff,0 4px 3px rgba(0,0,0,0.7);
-webkit-border-radius:0 0 3px 3px;
-moz-border-radius:0 0 3px 3px;
border-radius:0 0 3px 3px;
}
ul#piano li a:active,ul#piano li div.anchor:active {
-webkit-box-shadow:0 2px 2px rgba(0,0,0,0.4);
-moz-box-shadow:0 2px 2px rgba(0,0,0,0.4);
box-shadow:0 2px 2px rgba(0,0,0,0.4);
position:relative;
top:2px;
height:216px;
}
ul#piano li a:active:before,ul#piano li div.anchor:active:before {
content:"";
width:0px;
height:0px;
border-width:216px 5px 0px;
border-style:solid;
border-color:transparent transparent transparent rgba(0,0,0,0.1);
position:absolute;
left:0px;
top:0px;
}
ul#piano li a:active:after,ul#piano li div.anchor:active:after {
content:"";
width:0px;
height:0px;
border-width:216px 5px 0px;
border-style:solid;
border-color:transparent rgba(0,0,0,0.1) transparent transparent;
position:absolute;
right:0px;
top:0px;
}
/* Black Tuts */
ul#piano li span {
position:absolute;
top:0px;
left:-12px;
width:20px;
height:120px;
background:#333;
background:-webkit-linear-gradient(-20deg,#333,#000,#333);
background:-moz-linear-gradient(-20deg,#333,#000,#333);
background:-ms-linear-gradient(-20deg,#333,#000,#333);
background:-o-linear-gradient(-20deg,#333,#000,#333);
background:linear-gradient(-20deg,#333,#000,#333);
z-index:10;
border-width:1px 2px 7px;
border-style:solid;
border-color:#666 #222 #111 #555;
-webkit-box-shadow:inset 0px -1px 2px rgba(255,255,255,0.4),0 2px 3px rgba(0,0,0,0.4);
-moz-box-shadow:inset 0px -1px 2px rgba(255,255,255,0.4),0 2px 3px rgba(0,0,0,0.4);
box-shadow:inset 0px -1px 2px rgba(255,255,255,0.4),0 2px 3px rgba(0,0,0,0.4);
-webkit-border-radius:0 0 2px 2px;
-moz-border-radius:0 0 2px 2px;
border-radius:0 0 2px 2px;
}
ul#piano li span:active {
border-bottom-width:2px;
height:123px;
-webkit-box-shadow:inset 0px -1px 1px rgba(255,255,255,0.4),0 1px 0px rgba(0,0,0,0.8),0 2px 2px rgba(0,0,0,0.4),0 -1px 0px #000;
-moz-box-shadow:inset 0px -1px 1px rgba(255,255,255,0.4),0 1px 0px rgba(0,0,0,0.8),0 2px 2px rgba(0,0,0,0.4),0 -1px 0px #000;
box-shadow:inset 0px -1px 1px rgba(255,255,255,0.4),0 1px 0px rgba(0,0,0,0.8),0 2px 2px rgba(0,0,0,0.4),0 -1px 0px #000;
}
/* Tooltips */
ul#piano li b {
position:absolute;
top:0px;
margin-top:-10px;
background:#111;
color:#fff;
font:bold 14px 'Trebuchet MS',Arial,Sans-Serif;
border:2px solid #e6e6e6;
-webkit-border-radius:7px;
-moz-border-radius:7px;
border-radius:7px;
width:100px;
height:30px;
padding:10px;
left:-40px;
z-index:100;
visibility:hidden;
opacity:0;
-webkit-box-shadow:0 2px 10px rgba(0,0,0,0.5);
-moz-box-shadow:0 2px 10px rgba(0,0,0,0.5);
box-shadow:0 2px 10px rgba(0,0,0,0.5);
-webkit-transition:all 0.2s ease-out;
-moz-transition:all 0.2s ease-out;
-ms-transition:all 0.2s ease-out;
-o-transition:all 0.2s ease-out;
-transition:all 0.2s ease-out;
}
/* Tooltip Arrow */
ul#piano li b:before {
content:"";
display:block;
position:absolute;
top:100%;
left:50px;
border-width:8px;
border-style:solid;
border-color:#e6e6e6 transparent transparent transparent;
}
ul#piano li b:after {
content:"";
display:block;
position:absolute;
top:100%;
left:53px;
border-width:5px;
border-style:solid;
border-color:#111 transparent transparent transparent;
}
ul#piano li:hover b {
visibility:visible;
opacity:1;
margin-top:10px;
}
/* Drop Down Menus */
ul#piano li ul,#search,#contact {
position:absolute;
border:2px solid #e6e6e6;
margin-top:-100px;
top:100%;
left:0px;
z-index:1000;
visibility:hidden;
opacity:0;
-webkit-box-shadow:0 2px 7px #000;
-moz-box-shadow:0 2px 7px #000;
box-shadow:0 2px 7px #000;
-webkit-transition:all 0.2s ease-out 0.2s;
-moz-transition:all 0.2s ease-out 0.2s;
-ms-transition:all 0.2s ease-out 0.2s;
-o-transition:all 0.2s ease-out 0.2s;
transition:all 0.2s ease-out 0.2s;
}
#search,#contact {
background:#333;
padding:40px 10px 8px;
-webkit-border-radius:0 0 18px 0;
-moz-border-radius:0 0 18px 0;
border-radius:0 0 18px 0;
}
#search input[type="text"],#contact input[type="text"] {
border:1px solid #aaa;
font:normal 12px Cambria,Georgia,Serif;
padding:2px 5px 2px;
width:120px;
margin-bottom:2px;
margin-right:2px;
position:relative;
color:#aaa;
-webkit-box-shadow:inset 0 0 5px #ccc;
-moz-box-shadow:inset 0 0 5px #ccc;
box-shadow:inset 0 0 5px #ccc;
-webkit-border-radius:0 0 10px 0;
-moz-border-radius:0 0 10px 0;
border-radius:0 0 10px 0;
}
#contact textarea {
border:1px solid #aaa;
font:normal 12px Cambria,Georgia,Serif;
padding:2px 5px;
width:270px;
height:100px;
margin-top:4px;
position:relative;
color:#aaa;
-webkit-box-shadow:inset 0 0 5px #ccc;
-moz-box-shadow:inset 0 0 5px #ccc;
box-shadow:inset 0 0 5px #ccc;
-webkit-border-radius:0 0 10px 0;
-moz-border-radius:0 0 10px 0;
border-radius:0 0 10px 0;
}
#contact input[type="submit"] {
background:-webkit-linear-gradient(top,#666,#000,#333);
background:-moz-linear-gradient(top,#666,#000,#333);
background:-ms-linear-gradient(top,#666,#000,#333);
background:-o-linear-gradient(top,#666,#000,#333);
background:linear-gradient(top,#666,#000,#333);
border:none;
-webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
-webkit-box-shadow:0 1px 1px #000;
-moz-box-shadow:0 1px 1px #000;
box-shadow:0 1px 1px #000;
padding:3px 10px 4px;
margin:4px 2px;
font:normal 10px Verdana,Arial,Sans-Serif;
color:#ccc;
float:right;
}
#search input:focus,#contct input:focus,#contact textarea:focus {
color:#000;
}
/* Loupe */
#search:after {
content:"";
width:5px;
height:5px;
border:1px solid #666;
-webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
position:absolute;
left:100%;
margin-left:-25px;
top:46px;
z-index:100;
}
#search:before {
content:"";
width:2px;
height:0px;
border:1px solid #666;
position:absolute;
z-index:3;
left:100%;
margin-left:-28px;
top:53px;
-webkit-transform:rotate(-42deg);
-moz-transform:rotate(-42deg);
-ms-transform:rotate(-42deg);
-o-transform:rotate(-42deg);
transform:rotate(-42deg);
}
ul#piano li li {
width:150px;
height:auto;
display:block;
float:none;
[Login to get rid of this advertisement]
background:transparent;
}
ul#piano li li a,ul#piano li li a:active {
height:auto;
display:block;
padding:10px 15px;
background:#333;
font:normal 12px Arial,Sans-Serif;
color:#fff;
text-decoration:none;
-webkit-box-shadow:none;
-moz-box-shadow:none;
box-shadow:none;
border-radius:0px;
-webkit-border-radius:0px;
-moz-border-radius:0px;
border-width:1px 0;
border-style:solid;
border-color:#444 transparent #222 transparent;
top:0px;
margin-top:0px;
}
ul#piano li li a:active:before,ul#piano li li a:active:after {
border:none !important;
}
ul#piano li:hover ul,ul#piano li:hover #search,ul#piano li:hover #contact {
visibility:visible;
opacity:1;
margin-top:15px;
}
ul#piano li li a:hover {
background:#111;
border-top-color:#222;
border-bottom-color:#000;
}
/* Paper */
.credit {
margin:50px;
width:390px;
height:50px;
padding:30px;
position:relative;
background:#fff;
font:italic 1em Cambria,Georgia,Serif;
color:#666;
background:-webkit-gradient(linear,0% 20%,0% 92%,from(#fff),to(#f9f9f9),color-stop(.1,#fff));
background:-moz-linear-gradient(0 0 270deg,#fff,#fff 10%,#f9f9f9);
background:-ms-linear-gradient(0 0 270deg,#fff,#fff 10%,#f9f9f9);
background:-o-linear-gradient(0 0 270deg,#fff,#fff 10%,#f9f9f9);
background:linear-gradient(0 0 270deg,#fff,#fff 10%,#f9f9f9);
border:1px solid #ccc;
-webkit-box-shadow:1px 1px 4px rgba(0,0,0,0.1);
-moz-box-shadow:1px 1px 4px rgba(0,0,0,0.1);
box-shadow:1px 1px 4px rgba(0,0,0,0.1);
-webkit-border-bottom-right-radius:60px 5px;
-moz-border-radius-bottomright:60px 5px;
border-bottom-right-radius:60px 5px;
-webkit-animation:taufik 1s;
-moz-animation:taufik 1s;
animation:taufik 1s;
}
.credit:before {
content:"";
width:98%;
z-index:-1;
height:100%;
padding:0 0 1px 0;
position:absolute;
bottom:0;
right:0;
background:#fff;
background:-webkit-gradient(linear,0% 20%,0% 92%,from(#fff),to(#f9f9f9),color-stop(.1,#fff));
background:-moz-linear-gradient(0 0 270deg,#fff,#fff 10%,#f9f9f9);
background:-ms-linear-gradient(0 0 270deg,#fff,#fff 10%,#f9f9f9);
background:-o-linear-gradient(0 0 270deg,#fff,#fff 10%,#f9f9f9);
background:linear-gradient(0 0 270deg,#fff,#fff 10%,#f9f9f9);
border:1px solid #ccc;
-webkit-box-shadow:1px 1px 8px rgba(0,0,0,0.1);
-moz-box-shadow:1px 1px 8px rgba(0,0,0,0.1);
box-shadow:1px 1px 8px rgba(0,0,0,0.1);
-webkit-border-bottom-right-radius:60px 5px;
-moz-border-radius-bottomright:60px 5px;
border-bottom-right-radius:60px 5px;
-webkit-transform:skew(2deg,2deg) translate(-4px,8px);
-moz-transform:skew(2deg,2deg) translate(-4px,8px);
-ms-transform:skew(2deg,2deg) translate(-4px,8px);
-o-transform:skew(2deg,2deg) translate(-4px,8px);
transform:skew(2deg,2deg) translate(-4px,8px);
}
.credit:after {
content:"";
width:98%;
z-index:-1;
height:98%;
padding:0 0 1px 0;
position:absolute;
bottom:0;
right:0;
background:#f3f3f3;
background:-webkit-gradient(linear,0% 20%,0% 92%,from(#fff),to(#f9f9f9),color-stop(.1,#fff));
background:-moz-linear-gradient(0 0 270deg,#fff,#fff 10%,#f9f9f9);
background:-ms-linear-gradient(0 0 270deg,#fff,#fff 10%,#f9f9f9);
background:-o-linear-gradient(0 0 270deg,#fff,#fff 10%,#f9f9f9);
background:linear-gradient(0 0 270deg,#fff,#fff 10%,#f9f9f9);
border:1px solid #ccc;
-webkit-box-shadow:0px 0px 8px rgba(0,0,0,0.1);
-moz-box-shadow:0px 0px 8px rgba(0,0,0,0.1);
box-shadow:0px 0px 8px rgba(0,0,0,0.1);
-webkit-transform:rotate(-4deg) translate(-14px,-2px);
-moz-transform:rotate(-4deg) translate(-14px,-2px);
-ms-transform:rotate(-4deg) translate(-14px,-2px);
-o-transform:rotate(-4deg) translate(-14px,-2px);
transform:rotate(-4deg) translate(-14px,-2px);
}
.credit_ribbon {
position:absolute;
top:0;
left:0;
width:115px;
height:35px;
background:rgba(0,0,0,0.1);
background:-webkit-gradient(linear,555% 20%,0% 92%,from(rgba(0,0,0,0.1)),to(rgba(0,0,0,0.0)),color-stop(.1,rgba(0,0,0,0.2)));
background:-moz-linear-gradient(555% 0 180deg,rgba(0,0,0,0.1),rgba(0,0,0,0.2) 10%,rgba(0,0,0,0.0));
background:-ms-linear-gradient(555% 0 180deg,rgba(0,0,0,0.1),rgba(0,0,0,0.2) 10%,rgba(0,0,0,0.0));
background:-o-linear-gradient(555% 0 180deg,rgba(0,0,0,0.1),rgba(0,0,0,0.2) 10%,rgba(0,0,0,0.0));
background:linear-gradient(555% 0 180deg,rgba(0,0,0,0.1),rgba(0,0,0,0.2) 10%,rgba(0,0,0,0.0));
border-left:1px dashed rgba(0,0,0,0.1);
border-right:1px dashed rgba(0,0,0,0.1);
-webkit-box-shadow:0px 1px 7px rgba(0,0,0,0.2);
-moz-box-shadow:0px 1px 7px rgba(0,0,0,0.2);
box-shadow:0px 1px 7px rgba(0,0,0,0.2);
-webkit-transform:rotate(-30deg) skew(0,0) translate(-30px,-20px);
-moz-transform:rotate(-30deg) skew(0,0) translate(-30px,-20px);
-o-transform:rotate(-30deg) skew(0,0) translate(-30px,-20px);
transform:rotate(-30deg) skew(0,0) translate(-30px,-20px);
}
.clear {
clear:both;
}
/* Animation */
@-webkit-keyframes taufik{
from{opacity:0;}
to{opacity:1;}
}
@-moz-keyframes taufik{
from{opacity:0;}
to{opacity:1;}
}
@keyframes taufik{
from{opacity:0;}
to{opacity:1;}
}
Also see: Tab Triggers