-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.36 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TodoMVC Remake</title>
<script src="main.js" defer></script>
</head>
<body>
<header>
<h1>todos</h1>
<form id="add-item-form">
<div class="input-wrapper">
<label for="todo-input" id="choose-all-items"></label>
<input type="text" name="todo-input" id="todo-input" placeholder="What needs to be done?"
autocomplete="off" autofocus>
</div>
</form>
</header>
<main>
<ul id="item-list"></ul>
</main>
<footer class="todo-footer">
<span id="item-count"></span>
<ul id="button-list">
<li>
<button id="all-button" class="footer-buttons">All</button>
</li>
<li>
<button id="active-button" class="footer-buttons">Active</button>
</li>
<li>
<button id="completed-button" class="footer-buttons">Completed</button>
</li>
</ul>
<button id="clear-button" class="footer-buttons">Clear Completed</button>
</footer>
<footer class="footer-info">
<p>Created by Calås & Flink Team</p>
</footer>
</body>
</html>