Last active
October 23, 2015 17:51
-
-
Save rodneyrehm/11b94c9c9b9e90a8a6db to your computer and use it in GitHub Desktop.
JS Bin custom gist test
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
| /* some css */ | |
| 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
| // some javascript | |
| var p = document.querySelector('p'); | |
| p.textContent = 'yes yes'; |
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> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <p>gist export tryout</p> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment