-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (60 loc) · 3.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.ico">
<title> ToDo List </title>
<!-- jQuery [v3.5.1]-->
<script src="lib/jQuery/jquery-3.5.1.min.js"></script>
<!-- Bootstrap [v4.4.1] -->
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="lib/Bootstrap/bootstrap.bundle.min.js"></script>
<link href="lib/Bootstrap/bootstrap.min.css" rel="stylesheet">
<!-- icon : Font-AWESOME [v5.13.0] -->
<link rel="stylesheet" href="lib/Font_Awesome/all.min.css" data-auto-replace-svg="nest">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Galada&display=swap" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Bad+Script&display=swap" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Tangerine:wght@700&display=swap" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Merienda+One&display=swap" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Amaranth&display=swap" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Sacramento&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Damion&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Satisfy&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Acme&display=swap" rel="stylesheet">
<!-- Modenizer [v2.8.3] -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js" integrity="sha256-0rguYS0qgS6L4qVzANq4kjxPLtvnp5nn2nB5G1lWRv4=" crossorigin="anonymous" type="text/javascript" async></script>
<!-- rendering custom stylesheet for current page -->
<link href="todo.css" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<div class="container">
<h1 class="row align-items-center">
<span class="col-10"> TO-DO LIST </span>
<span class="col-2"> <i class="fas fa-plus-square" aria-hidden="true"></i> </span>
</h1>
</div>
<div id="inputContainer">
<div class="container">
<div class="row">
<input class="col" type="text" placeholder="Type to add new Todo">
<button class="col-2"> <i class="fas fa-check"></i> </button>
</div>
</div>
</div>
<div id="message">
<p></p>
</div>
<ul id="ulTodo"></ul>
<h2 id="noList">
<span> <i class="fas fa-clipboard-list"></i> </span>
To-Do list is empty
</h2>
</div>
<script src="todo.js"></script>
</body>
</html>