Skip to content

Instantly share code, notes, and snippets.

@StephenFiser
Last active August 29, 2015 14:01
Show Gist options
  • Save StephenFiser/fa598b8f34c763e0f7ba to your computer and use it in GitHub Desktop.
Save StephenFiser/fa598b8f34c763e0f7ba to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<title>Hello!</title>
</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