Skip to content

Instantly share code, notes, and snippets.

@PrimeTimeTran
Created July 30, 2019 09:54
Show Gist options
  • Save PrimeTimeTran/67d9aed74d811eac2cb6826b3e7c9e44 to your computer and use it in GitHub Desktop.
Save PrimeTimeTran/67d9aed74d811eac2cb6826b3e7c9e44 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Todo List</title>
<meta name="description" content="Todo List">
<meta name="author" content="SitePoint">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Todo List</h1>
<input id="todoInput" />
<button onclick="addTodo()">
Add Todo
</button>
<button onclick="filterForAllTodos()">
All Todos
</button>
<button onclick="filterForNotDoneTodos()">
Not Done Todos
</button>
<button onclick="filterForDoneTodos()">
Done Todos
</button>
<ul id="todoList">
</ul>
<script src="scripts.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment