mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
22 lines
510 B
HTML
22 lines
510 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<h1>todos</h1>
|
|
<input/><button>Add</button>
|
|
<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>
|