-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (53 loc) · 2.43 KB
/
index.html
File metadata and controls
58 lines (53 loc) · 2.43 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
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Final Project</title>
<link href="style.css" rel="stylesheet" />
<script src="main.js" defer></script>
</head>
<body>
<div class="vertical-container flex-medium-gap">
<div class="title">todos</div>
<div class="horizontal-container flex-center">
<div class="todos">
<div class="header">
<button id="check-all" class="button-like-text">V</button>
<input id="input-box" type="text" placeholder="What needs to be done?">
</div>
<div id="todos-items">
<!--
<div class="todo horizontal-container">
<input type="checkbox" class="check">
<label class="text">Example Item</div>
<input class="text removed" type="text"></input>
<div class="clear">
<button class="button-like-text">X</button>
</div>
</div>
-->
</div>
<div id="todos-footer" class="todos-footer horizontal-container remove">
<div class="horizontal-container" style="width: 25%;">
<div id="item-count" style="width: 100%; margin-left: 32px; text-align: left; align-self: center;">X item(s) left</div>
</div>
<div class="horizontal-container flex-center flex-small-gap-dynamic" style="width: 50%;">
<button id="tab-all" class="tab tab-focused">All</button>
<button id="tab-active" class="tab">Active</button>
<button id="tab-completed" class="tab">Completed</button>
</div>
<div class="horizontal-container" style="width: 25%;">
<div id="item-count" style="width: 100%; margin-right: 32px; text-align: right; align-self: center;">
<button id="button-clear-completed" class="button-like-text hide">Clear completed</button>
</div>
</div>
</div>
</div>
</div>
<div class="small-footer">
Double-click to edit a todo
</div>
</div>
</body>
</html>