Skip to content

Instantly share code, notes, and snippets.

@lowellmower
Forked from anonymous/index.html
Created October 8, 2015 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lowellmower/9df60b3ffeb9c531f2bd to your computer and use it in GitHub Desktop.
Save lowellmower/9df60b3ffeb9c531f2bd to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/yuwefej
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
body {
background: pink;
}
#lowell {
background: green;
color: white;
}
#zombie{
background: purple;
}
p {
background: blue;
}
p {
background: red;
}
</style>
</head>
<body>
<h1 id="lowell">LOWELL</h1>
<p>is a</p>
<h1 id="zombie">ZOMBIE</h1>
<p>Jk, he's still human... for now</p>
<script id="jsbin-source-css" type="text/css">
body {
background: pink;
}
#lowell {
background: green;
color: white;
}
#zombie{
background: purple;
}
p {
background: blue;
}
p {
background: red;
}</script>
</body>
</html>
body {
background: pink;
}
#lowell {
background: green;
color: white;
}
#zombie{
background: purple;
}
p {
background: blue;
}
p {
background: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment