-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (39 loc) · 1.19 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
<!DOCTYPE html>
<head>
<link rel="icon" href="tasks5icon.png" sizes="16">
<title>
To-Do List
</title>
</head>
<body>
<div id="taskss">
<h3>
<ul id="tasks">
</ul>
</h3>
</div>
<div id="forms">
<form onsubmit="newtask()">
<input type="text" placeholder="New Task" id="input1" autofocus size="40">
<input type="submit" id="submit1">
</form>
--------------------------------------------------------------------
<form onsubmit="removingTask()">
<select name="Remove Task" placeholder="Remove Task" id="input2" style="max-width: 305px;">
<option value="" disabled selected hidden>Choose a task to remove</option>
</select>
<input type="submit" id="submit2">
</form>
</div>
<div id="rightbottom">
<h2>
<mark>
. Made with 💓 © Sahilsher Singh Sandhu .
</mark>
</h2>
</div>
<div>
<link rel="stylesheet" href="tasks.css">
<script src="tasks.js" ></script>
</div>
</body>