-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (33 loc) · 1.1 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
<!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 To Do List</title>
<link rel="stylesheet" href="assets/vendor/fontawesome/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- embedded link file .css -->
</head>
<body>
<div class="container">
<input type="text" class="txtb" placeholder="Add a task">
<!-- uncomplete task -->
<div class="notcomp">
<h3>Not Completed</h3>
<!-- element fill up by jquery -->
</div>
<!-- completed task -->
<div class="comp">
<h3>Completed</h3>
<!-- element fill up by jquery -->
</div>
</div>
<!-- script & library javascript -->
<!-- <script src="assets/vendor/jquery/jquery-3.4.1.min.js"></script> -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous">
</script>
<script src="assets/js/script.js"></script>
</body>
</html>