Skip to content

Instantly share code, notes, and snippets.

@greeneggsandmushrooms
Created October 29, 2017 18:22
Show Gist options
  • Save greeneggsandmushrooms/a7c652aebb8762a4012acf965cc2eba7 to your computer and use it in GitHub Desktop.
Save greeneggsandmushrooms/a7c652aebb8762a4012acf965cc2eba7 to your computer and use it in GitHub Desktop.
<style id="jsbin-css">
h1{
color:orange;
background-color:black;
font-family:courier;
font-size:40px;
}
#different{
background-color:maroon;
}
p{
color:blue;
background-color:orange;
font-family:impact;
font-size:30px;
}
#p2{
background-color:maroon;
color:grey;
}
#p3{
background-color:lime;
}
</style>
<!DOCTYPE html>
<html>
<body>
<h1>Header 1</h1>
<p>This is awesome!!</p>
<h1 id="different">Fun</h1>
<p id="p2">fun</p>
<p id="p3">fun</p>
<script id="jsbin-source-css" type="text/css">h1{
color:orange;
background-color:black;
font-family:courier;
font-size:40px;
}
#different{
background-color:maroon;
}
p{
color:blue;
background-color:orange;
font-family:impact;
font-size:30px;
}
#p2{
background-color:maroon;
color:grey;
}
#p3{
background-color:lime;
}</script>
</body>
</html>
h1{
color:orange;
background-color:black;
font-family:courier;
font-size:40px;
}
#different{
background-color:maroon;
}
p{
color:blue;
background-color:orange;
font-family:impact;
font-size:30px;
}
#p2{
background-color:maroon;
color:grey;
}
#p3{
background-color:lime;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment