-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTodo.html
53 lines (34 loc) · 1.35 KB
/
Todo.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
<!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>Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="./StylingTodo.css">
</head>
<body>
<div id="container">
<div id="ToDo">
<h1 style="color:purple;">To do list</h1>
<div id="input-container">
<input type="text" id="Add-task" placeholder="Add new Task">
<div id="input-icon">
<input type="button" onclick="addTodo()" id="Add" value="Add Task">
</div>
</div>
<div id="output-container" align="center">
<!--We will add to it onClick property from js-->
<!-- <div class="task">
<input type="button" value="X" id="del-task">
<input type="button" value="↑" id="upshift">
<input type="button" value="↓" id="downshift">
<input type="text" id="added-task" disabled value='blah'>
</div> -->
</div>
</div>
</div>
<script src="./functioning.js"></script>
</body>
</html>