Last active
December 5, 2015 19:13
-
-
Save sanusart/7c9c2771f935e32ddd0b to your computer and use it in GitHub Desktop.
jsfiddle 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
| html {} | |
| body {} | |
| a {} | |
| p {} | |
| h1, | |
| h2, | |
| h3, | |
| h4, | |
| h5, | |
| h6 {} |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>test</title> | |
| </head> | |
| <body> | |
| </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
| (function(doc) { | |
| var docBody = doc.body; | |
| docBody.innerHTML = '<h1>Welcome</h1><p>Hello</p>'; | |
| docBody.style.backgroundColor = '#f00'; | |
| docBody.style.color = '#fff'; | |
| })(document); |
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
| name: The Name of the Fiddle | |
| description: Some description, please keep it in one line | |
| authors: | |
| - Sasha Khamkov | |
| resources: | |
| - https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css | |
| - https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js | |
| normalize_css: no | |
| wrap: l | |
| panel_js: 0 | |
| panel_css: 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment