-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (40 loc) · 1.12 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>
<head>
<title>
ToDolistApp
</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
Daily Task
</header>
<div id="gradient">
<div id="TaskContainer">
<div id="taskINprogress">
<div id="uncompleteBar">
In Progess
</div>
</div>
<div id="TaskComplete">
<div id="completeBar">
complete
</div>
</div>
</div>
</div>
<div class="InputContainer">
<input id="userInput"
style=" text-align: center; border-radius: 10px; background-color: antiquewhite; border: none; outline: none; height: 30px; "
type=" text" placeholder="Add Your Task " name="TaskToAdd"><br>
<button id="submit" type="button" value="Add"> Add</button>
</div>
<script src="script.js"></script>
<!-- <div>
<input id="task" type="radio" name="task" value="hello there"><label for="task">
anuj is here
</label>
</div> -->
</body>
</html>