Last active
August 29, 2015 14:01
-
-
Save StephenFiser/ddb5a74523531e5e6880 to your computer and use it in GitHub Desktop.
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> | |
| <title>Hello!</title> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | |
| <script src="./my_stuff.js"></script> | |
| </head> | |
| <body> | |
| <h1>Hello World!</h1> | |
| <div> | |
| <h3 data-stuff="to dos">Things I would like to do today:</h3> | |
| <input type="text" id="new-to-do-item" placeholder="Enter a new todo item..."> | |
| <ul> | |
| <li><input type="checkbox" title="Gym Time">Go to the Gym</li> | |
| <li><input type="checkbox" class="work">Do some work</li> | |
| <li><input type="checkbox" id="food">Eat</li> | |
| <li><input type="checkbox">Drink some Starbucks</li> | |
| </ul> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment