-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.html
69 lines (59 loc) · 2.88 KB
/
tasks.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/tasks.css" media="all" />
<script src="js/jquery.js"></script>
<script src="js/app.js"></script>
<title>ToDo</title>
<script src="//cdnjs.cloudflare.com/ajax/libs/annyang/2.4.0/annyang.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/SpeechKITT/1.0.0/speechkitt.min.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Slabo+27px&display=swap" rel="stylesheet">
<script>
if (annyang) {
// Add our commands to annyang
annyang.addCommands({
'hello': function() { alert('Hello world!'); }
});
// Tell KITT to use annyang
SpeechKITT.annyang();
// Define a stylesheet for KITT to use
SpeechKITT.setStylesheet('//cdnjs.cloudflare.com/ajax/libs/SpeechKITT/1.0.0/themes/flat.css');
// Render KITT's interface
SpeechKITT.vroom();
}
</script>
</head>
<body>
<a class="back" href="popup.html"><h4 style="color:white;background:transparent">< back</h4></a>
<div class="container">
<section class="wrapper">
<br>
<h1 style="background:transparent;color:white; font-size: 20px">Task manager</h1>
<img style="height: 60px; width: 60px; align-self: center;background:transparent" src="icons/tick.png" alt="One Stop icon">
<header ><h1 style="background:transparent;">Add your Tasks for the day!</h1></header>
<!-- content -->
<br>
<br>
<div class="ToDo">
<form action="#" spellcheck='false'style="background:transparent;">
<!-- <label for="task-input">Type</label> -->
<input type="text" id="task-input" placeholder='what needs to be done?' class="add" />
<input type="submit" id="task-submit" value="+" class="add-btn"/>
<!-- <button class="voice-btn"><i class="mic fa fa-microphone"></i></button> -->
</form>
<ul class='task-list'></ul>
<div class="bottom">
<div class="progress-bar">
<div class="progress-status">
<p><span class='tasks-left'>0</span> of <span class='tasks-total'>0</span> tasks done</p>
</div>
</div>
<a href='#' class="remove-checked"><span>Remove checked</span></a>
</div>
</div>
<!-- EO content -->
</section>
</body>
</html>