hacking fool!

This commit is contained in:
Micah Godbolt
2019-02-08 15:20:11 -08:00
parent 1b7775d784
commit 6d1f93c441
7 changed files with 52 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="./style.css">
<body>
<h1>todos</h1>
<input class="textfield" /><button class="button add">Add</button>
<div class="filter">
<button>all</button>
<button>active</button>
<button>completed</button>
</div>
<ul class="todos">
<li class="todo"><input type="checkbox" /> Todo 1</li>
<li class="todo"><input type="checkbox" /> Todo 2</li>
<li class="todo"><input type="checkbox" /> Todo 3</li>
<li class="todo"><input type="checkbox" /> Todo 4</li>
</ul>
<footer><span>4 items left</span> <button>Clear Completed</button></footer>
</body>
</html>