-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (53 loc) · 1.62 KB
/
index.html
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
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>To Do App</title>
</head>
<body>
<header>
<img
class="logo logo-size"
src="media/jello.png"
alt="Jello Logo, an image of a jelly"
/>
</header>
<h1 class="center">Jello App</h1>
<div class="main-section center width-md">
<section class="center input-form">
<!-- Controls -->
<form class="stack-sm">
<!-- Toggle to hide completed tasks -->
<div class="toggle-section center">
<div class="toggle-wrapper">
<label class="hide-done" for="hideToggle">
<input
type="checkbox"
id="hideToggle"
aria-describedby="toggle-text"
/>
<div tabindex="0" class="slider round"></div>
</label>
</div>
<p id="toggle-text">Hide your completed tasks!</p>
</div>
<input
id="user_input"
type="text"
name="user_input"
class="stack-lg"
label="user-input"
/>
<button type="submit" for="user_input">save item</button>
</form>
</section>
<!-- List rendered here -->
<ol id="todo_list" class="todo-output center"></ol>
</div>
<script src="test.helpers.js"></script>
<script src="app.js"></script>
</body>
</html>