-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 879 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>taskList</title>
<link rel="stylesheet" href="assets/css/style.css"/>
<script defer src="assets/js/lib/fontawesome-all.min.js"></script>
<link rel="icon" type="image/png" href="assets/img/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<header>
<i class="fa fa-th-list" aria-hidden="true"></i>
taskList
<span id="headerCount"></span>
</header>
<textarea id="taskInput" placeholder="Type & press <ENTER> ..."></textarea>
<section>
<ul id="items">
</ul>
</section>
</div>
<script src="assets/js/lib/jquery-3.2.1.min.js"></script>
<script src="assets/js/lib/autosize.min.js"></script>
<script src="assets/js/lib/sortable.min.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>