Created
February 12, 2016 22:15
-
-
Save csdear/03a591ce5ea6e9737361 to your computer and use it in GitHub Desktop.
Javascript TestGround As Minimal as it can Get!!!
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|program.html=== | |
| <html> | |
| <body> | |
| <pre> | |
| <script src="program.js"> | |
| </script> | |
| </pre> | |
| </body> | |
| </html> | |
| ===Javascript|program.js=== | |
| document.writeln('Hello World'); | |
| ===CSS| style.css === | |
| body { | |
| color : blue; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment