-
Notifications
You must be signed in to change notification settings - Fork 0
/
ToDo app.html
84 lines (55 loc) · 1.88 KB
/
ToDo app.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
<html>
<head>
<style>
#space{
width:250%;
text-align: left;
color:black;
padding: 4%;
}
#space1{
padding: 7px;
}
div.bottom{
position:absolute;
bottom:10px;
}
.dark{
width:700px;
height:100px;
background-repeat: no-repeat;
background-size:300px 100px;
background-color:aqua;
text-decoration-line: line-through;
}
</style>
<script type="text/javascript" >
window.onload = function () {document.getElementById("text").onclick = function() {myFunction()};}
function change()
{
var x = document.createElement("P");
var ct=document.getElementById("space").value;
x.innerHTML=ct
var items = document.getElementById('text');
items.innerHTML+='</br></br>'+ct;
//document.body.appendChild(x);
document.getElementById("space").value = "";
}
function myFunction()
{
//document.getElementById("text").innerHTML = "YOU CLICKED ME!";
var element=document.body;
element.classList.toggle("dark");
}
</script>
</head>
<body>
<div id="text" >
<p >hi bay</p>
</div>
<div class=bottom>
<input id="space" type="text" placeholder="Enter the text..." >
<button id="space1" onclick="change()" >Submit</button>
</div>
</body>
</html>