forked from Migracode-Barcelona/js2-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·49 lines (45 loc) · 1.18 KB
/
index.html
File metadata and controls
executable file
·49 lines (45 loc) · 1.18 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
49
<!DOCTYPE html>
<html>
<head>
<title>To-do App</title>
<link rel="stylesheet" href="styles/styles.css" />
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon" />
</head>
<body>
<div class="header">
<div class="container">
<h1 class="header__title">Todo</h1>
<h2 class="header__subtitle">Create Some Tasks</h2>
</div>
</div>
<div class="actions">
<div class="actions__container">
<input
id="search-text"
class="input"
type="text"
placeholder="Filter todos"
/>
<label class="checkbox">
<input type="checkbox" id="show-finished" /> Finished
</label>
<label class="checkbox">
<input type="checkbox" id="show-unfinished" /> Unfinished
</label>
</div>
</div>
<div class="container">
<form id="new-todo">
<input
type="text"
class="input"
placeholder="Something to do"
name="text"
/>
<button class="button">Create</button>
</form>
<div id="todos"></div>
</div>
<script src="scripts/script.js"></script>
</body>
</html>