-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodolist.html
44 lines (41 loc) · 1.23 KB
/
todolist.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Shopping list</title>
</head>
<body>
<div class="wrapper">
<div class="header">
<h1>:: Things to buy ::</h1>
</div>
<div class="add-task">
<input type="text" id="new-task-input" placeholder="add an item...">
<button class="add-task-btn">+</button>
</div>
<div class="task-list-header">
<h1>:: List ::</h1>
<button class="remove-complete-btn">Clear Complete</button>
<button onclick="window.location.reload();">Clear All</button>
</div>
<div class="task-list-wrapper">
<ol class="task-list task-list-1" id="myList1">
</ol>
<!-- <ul id="myList1"></ul> -->
</div>
</div>
<template id="task-template">
<li class="task">
<input type="checkbox">
<label>
<!-- <span class="check-mark">✔</span> -->
<span class="custom-checkbox"></span>
</label>
</li>
</template>
<script type="text/javascript" src="new.js">
</script>
</body>
</html>