-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (50 loc) · 2.06 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
<!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">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="" id="nightmode">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<title>ToDo App</title>
</head>
<body>
<div class="img"></div>
<div id="notify" class="">Enter Todo Title</div>
<section>
<div class="title">
<h2>T O D O</h2>
<input type="checkbox" id="darkmode">
<label for="darkmode" onclick="changeMode()"><span><i class="fas fa-moon"></i></span></label>
</div>
<div class="insert">
<button class="addbtn" onclick="addTodo()"><i class="fas fa-plus"></i></button>
<input type="text" placeholder="Create a new todo..." value="">
</div>
<ul class="insert list">
<footer>
<div>
<p><span>0</span> Items Left</p>
</div>
<div class="format">
<label id="FormatAll">
<input type="radio" name="formatName" checked>
<span onclick="formatAll()">All</span>
</label>
<label id="FormatActives">
<input type="radio" name="formatName">
<span onclick="formatActives()">Actives</span>
</label>
<label id="FormatCompleted">
<input type="radio" name="formatName">
<span onclick="formatCompleted()">Completed</span>
</label>
</div>
<button onclick="clearAllCompleted()">Clear Completed</button>
</footer>
</div>
</section>
<script src="script.js"></script>
</body>
</html>