mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
29 lines
849 B
HTML
29 lines
849 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<link rel="stylesheet" href="./style.css" />
|
|
<body>
|
|
<h1>todos</h1>
|
|
<input class="textfield" placeholder="add todo" /><button class="button add">Add</button>
|
|
<div class="filter">
|
|
<button class="selected">all</button>
|
|
<button>active</button>
|
|
<button>completed</button>
|
|
</div>
|
|
<ul class="todos">
|
|
<li class="todo">
|
|
<label><input type="checkbox" /> Todo 1</label>
|
|
</li>
|
|
<li class="todo">
|
|
<label><input type="checkbox" /> Todo 2</label>
|
|
</li>
|
|
<li class="todo">
|
|
<label><input type="checkbox" /> Todo 3</label>
|
|
</li>
|
|
<li class="todo">
|
|
<label><input type="checkbox" /> Todo 4</label>
|
|
</li>
|
|
</ul>
|
|
<footer><span>4 items left</span> <button class="button">Clear Completed</button></footer>
|
|
</body>
|
|
</html>
|