Skip to content

Instantly share code, notes, and snippets.

@loganwilliams
Created October 2, 2018 17:10
Show Gist options
  • Save loganwilliams/c4a07e739ea8fcab4f4bb9a81ad15580 to your computer and use it in GitHub Desktop.
Save loganwilliams/c4a07e739ea8fcab4f4bb9a81ad15580 to your computer and use it in GitHub Desktop.
Session 1 Example (part 0)
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Our To-do list</title>
</head>
<body>
<h1>To-do</h1>
<ul id="tasks">
<li>Learn HTML</li>
<li>Make a To-do list</li>
<li>Learn D3</li>
</ul>
<input id="newtask" />
<button>Add task</button>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment