Created
March 15, 2017 22:24
-
-
Save tomasovic/7875a49485c9d95b68f64335135332bd to your computer and use it in GitHub Desktop.
JS Uvod
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>JavaScript Introduction</title> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="header"> | |
| <h1>JavaScript introduction</h1> | |
| <button>Change</button> | |
| <h1>Output</h1> | |
| <div id="output"> | |
| <p>default</p> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| document.write("Hello World"); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment