-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (66 loc) · 2.4 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!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>To-Do list extension</title>
<link href="./popup.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap-theme.min.css" integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">
<script src="jquery-3.6.4.min.js"></script>
<script defer src="popup.js"> </script>
</head>
<body>
<div class="heading">
<h1 id="date"></h1>
</div>
<div id="qote" >
<p id="M_qote">loading...</p>
<p id="author"></p>
</div>
<div>
<textarea id="task" placeholder="please enter your task" rows="5"></textarea>
</div>
<div>
<select name="Priority" class="prio" id="pr">
<option id="imp" value="Low">Low</option>
<option id="moreimp" value="Medium "> Medium </option>
<option id="mostimp" value="High">High</option>
</select>
</div>
<div>
<input type="datetime-local" class="task_time" value="2023-04-07 11:15" id = "tim">
</div>
<br>
<button type="button" id ="sbmit">Add task</button>
<br><br>
<div>
<!-- <button class="btn btn-primary" id="toggleAlarm">activate alarm</button> -->
<button class="btn btn-primary" id="Alarm">alarm</button>
</div>
<br><br>
<div id="items" class="my-2">
<table class="table table-hover table-dark">
<thead>
<tr>
<th scope="col">SL No.</th>
<th scope="col">Priority
<th scope="col">Task</th>
<th scope="col">Timing</th>
<th scope="col">Actions</th>
</tr>
</thead>
<tbody id="table">
<tr>
<th scope="row">1</th>
<td>High</td>
<td>mechanics class</td>
<td>15:00</td>
<td><button class="btn btn-success" id="deleting">delete</button></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>