Last active
May 8, 2017 17:56
-
-
Save ronsims2/9211f856fdcfabb27ae7908b6390cbda to your computer and use it in GitHub Desktop.
A bingo card for the workplace
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> | |
<link href="https://rawgit.com/orangemantis/9211f856fdcfabb27ae7908b6390cbda/raw/styles.css" rel="stylesheet" media="screen"/> | |
</head> | |
<body> | |
<h1>Hello World</h1> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | |
<script src="https://rawgit.com/orangemantis/9211f856fdcfabb27ae7908b6390cbda/raw/index.js"></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
//Add logic her | |
$(document).ready(function() { | |
alert('Bingo time!'); | |
}); |
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
/*Add styles*/ | |
h1 { | |
color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment