Created
May 27, 2014 17:49
-
-
Save StephenFiser/084999424581f818fbdc 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..."> | |
| <a href="#" id="sort">Sort</a> | |
| <a href="#" id="reverse-sort">Reverse Sort</a> | |
| <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> | |
| <div class="pizza" id="pepperoni" data-rating="pretty good" title="Our Pepperoni Pizzas are pretty good."> | |
| <p>Pepperoni Pizza</p> | |
| </div> | |
| <div class="pizza" id="sausage" data-rating="The best" title="Our sausage pizza is amazing."> | |
| <p>Sausage Pizza</p> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment