Created
January 10, 2019 00:33
-
-
Save topherPedersen/030fe75eea7633f91b56838c45ffd232 to your computer and use it in GitHub Desktop.
Hello World in HTML, CSS, & JavaScript
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> | |
| <style> | |
| body { | |
| background: red; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>hello, world</h1> | |
| <p>Welcome to Web Development with HTML, CSS, & JavaScript!</p> | |
| <script> | |
| alert("hello, world"); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment