-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (56 loc) · 2.09 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To Do App</title>
<!-- Reset -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/modern-normalize.min.css">
<!-- Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css"
integrity="sha512-10/jx2EXwxxWqCLX/hHth/vu2KY3jCF70dCQB8TSgNjbCVAC/8vai53GfMDrO2Emgwccf2pJqxct9ehpzG+MTw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Figtree:wght@400;700&display=swap">
<link rel="stylesheet" href="app.css">
</head>
<body>
<header id="main-header">
<div class="container">
<h1>Today</h1>
<form action="" id="todo-form">
<input type="text" name="task-name" placeholder="e.g. Code for 1 hour" autofocus>
<button type="submit">Add Task</button>
</form>
</div>
</header>
<section>
<div class="container" id="main-content">
<ul class="stats">
<li>
<span>Remaining</span>
<span id="remaining-tasks">0</span>
</li>
<li>
<span>Completed</span>
<span id="completed-tasks">0</span>
</li>
<li>
<span>Total</span>
<span id="total-tasks">0</span>
</li>
</ul>
<ul class="todos">
</ul>
</div>
</section>
<footer>
<div class="container">
<small>Happy Journey 🎈</small>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>