Created
October 29, 2017 19:31
-
-
Save greeneggsandmushrooms/7850c302ee13311f93eb5dba41dba31e to your computer and use it in GitHub Desktop.
35 Bin // source http://jsbin.com/degivot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>35 Bin</title> | |
<style id="jsbin-css"> | |
p{ | |
color:red; | |
} | |
</style> | |
</head> | |
<body> | |
<p>This is awesome </p> | |
<button onclick="functionOne()">1</button> | |
<button onclick="functionTwo()">2</button> | |
<button onclick="functionThree()">3</button> | |
<script id="jsbin-javascript"> | |
function functionOne(){ | |
alert("One") | |
} | |
function functionTwo(){ | |
alert("Two") | |
} | |
function functionThree(){ | |
alert("Three") | |
} | |
</script> | |
<script id="jsbin-source-css" type="text/css">p{ | |
color:red; | |
} | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">function functionOne(){ | |
alert("One") | |
} | |
function functionTwo(){ | |
alert("Two") | |
} | |
function functionThree(){ | |
alert("Three") | |
}</script></body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p{ | |
color:red; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function functionOne(){ | |
alert("One") | |
} | |
function functionTwo(){ | |
alert("Two") | |
} | |
function functionThree(){ | |
alert("Three") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment