changed step names

This commit is contained in:
Micah Godbolt
2019-02-14 10:15:39 -08:00
parent d0d6a788e2
commit 41a79e8883
34 changed files with 16 additions and 14 deletions

23
step1-01/index.html Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<body>
<h1>todos</h1>
<div>
<input/><button>Add</button>
</div>
<div>
<button>all</button>
<button>active</button>
<button>completed</button>
</div>
<ul>
<li><input type="checkbox" /> Todo 1</li>
<li><input type="checkbox" /> Todo 2</li>
<li><input type="checkbox" /> Todo 3</li>
<li><input type="checkbox" /> Todo 4</li>
</ul>
<div>
<span>4 items left</span> <button>Clear Completed</button>
</div>
</body>
</html>