-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (28 loc) · 932 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
<!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>Awesome TODO</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div class="container">
<h1>Awesome TODO</h1>
<div class="todo-list-wrapper">
<div class="input-wrapper">
<div class="arrow-wrapper">
<i class="down-arrow"></i>
</div>
<input type="text" id="todo-input" placeholder="What has to be done?" />
</div>
<div class="list-wrapper">
</div>
<div class="status-wrapper"></div>
</div>
</div>
<script src='script.js'></script>
</body>
</html>