-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (48 loc) · 2.03 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="thinkdj">
<title>mini.do</title>
<link rel="stylesheet" href="assets/styles.css">
<!-- Prefetch -->
<link rel="prefetch" href="assets/images/todo-ico.png">
<!-- FavIco -->
<link rel="icon" type="image/png" href="assets/images/todo-ico.png">
</head>
<body>
<div class="app">
<div class="container flex-center">
<div class="app-container">
<div class="app-todo">
<div class="app-header">
<h4 class="app-header__heading color-primary">
<span class="flex-center">
<img src="assets/images/todo-ico-20.png" alt="" class="logo" />
mini.do
</span>
<span class="app-header__sub">Your todo list <strong>for the day</strong></span>
</h4>
</div>
<form onsubmit="null" class="todo-grid">
<input id="todo-entry" type="text" autocomplete="false" />
<button id="todo-submit" type="submit">+ Add</button>
</form>
<div class="app-body">
<h3 class="heading-sub color-primary">Pending tasks</h3>
<ul id="todos" class="task-list task-list-pending">
</ul>
<h3 class="heading-sub color-secondary">Completed tasks</h3>
<ul id="todos-completed" class="task-list task-list-completed">
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
<!-- The app -->
<script async defer src="app.js"></script>
</html>