-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (45 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- todo add favicon -->
<!-- Favicons -->
<!--
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" type="image/x-icon" href="/img/apple-touch-icon-57x57-precomposed.png">
<link rel="apple-touch-icon" type="image/x-icon" sizes="72x72" href="/img/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon" type="image/x-icon" sizes="114x114" href="/img/apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon" type="image/x-icon" sizes="144x144" href="/img/apple-touch-icon-144x144-precomposed.png"> -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/sweetalert.css" />
<link rel="stylesheet" href="css/style.css" />
<title>TO DO</title>
</head>
<body>
<div class="header">
<div class="container">
<h1>TO DO LIST</h1>
<input type="text" placeholder="Task" id="taskInput" /><span
class="addBtn"
>Add</span
>
</div>
</div>
<ul class="todo-list">
<!-- <li class="list-group-item">1</li>
<li class="checked">2</li>
<li>3</li>
<li>4</li>
<li>5</li> -->
</ul>
<!-- todo -->
<!-- <ul class="completedTasks">
<li class="list-group-item">1 <span class="badge badge-pill">52</span></li>
</ul> -->
<script src="js/bootstrap.min.js"></script>
<script src="js/sweetalert.min.js"></script>
<script src="js/task.js"></script>
<script src="js/main.js"></script>
</body>
</html>