-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Simple Jquery Todo list</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="scripts/jquery-3.2.1.min.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<h2>Simple HTML, CSS and JS ToDo List</h2>
<div id="main-todo-list" class="to-do-list">
<div class="task">
<button class="remove-item"><i class="fa fa-times" aria-hidden="true"></i></button>
<button class="completed-item"><i class="fa fa-check" aria-hidden="true"></i></button>
<p class="task-text">Get beef from the local store</p>
</div>
<div class="task">
<button class="remove-item"><i class="fa fa-times" aria-hidden="true"></i></button>
<button class="completed-item"><i class="fa fa-check" aria-hidden="true"></i></button>
<p class="task-text">Make some coffee</p>
</div>
</div>
<div class="add-another-task">
<button id="new-task" class="new-item"><i class="fa fa-plus" aria-hidden="true"></i></button>
<input type="text" id="AddNewTask" placeholder="Click me to add another task">
</div>
</div>
<script src="scripts/script.js"></script>
</body>
</html>