mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
26 lines
545 B
HTML
26 lines
545 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="./style.css" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>todos</h1>
|
|
<div class="addTodo">
|
|
<input class="textfield" placeholder="add todo" />
|
|
<button class="submit">Add</button>
|
|
</div>
|
|
<nav class="filter">
|
|
<button class="active">all</button>
|
|
<button>active</button>
|
|
<button>completed</button>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<ul class="todos">
|
|
<li>Todo 1</li>
|
|
</ul>
|
|
</main>
|
|
</body>
|
|
</html>
|