-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 926 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Do It!</title>
<link href="https://fonts.googleapis.com/css?family=Quicksand:400,700" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<p id="time"></p>
<p id="progress">65% done</p>
</header>
<div class="todo-input">
<input type="text" placeholder="Enter a task..." id="task">
<button id="btn-add">Do it!</button>
</div>
<section>
<div class="task-undone">
<ul class="undone"></ul>
</div>
<div class="task-done">
<ul class="done"></ul>
</div>
</section>
<script src="js/scripts.js"></script>
</body>
</html>