-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
170 lines (151 loc) · 4.23 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!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>adarsh</title>
<!-- import css -->
<link rel="stylesheet" href="css/style.css" />
<!-- import js -->
<script src="js/script.js"></script>
<style>
body{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
}
.input{
position: fixed;
bottom: 2rem;
}
.container {
background-color: transparent;
width: 300px;
border: 15px solid green;
padding: 50px;
margin: 20px;
}
.container {
margin: auto;
width: 50%;
border: 3px solid green;
padding: 10px;
min-height: 300px;
}
.todo.--item {
background-color: azure;
width: 300px;
border: 3px solid green;
padding: 10px;
margin: auto;
}
.todo{
position: relative;
background-color: azure;
width: 80%;
border: 3px solid green;
padding: 10px;
margin: auto;
display: flex;
}
.addBtn {
background-color: rgb(249, 248, 248);
width: 70px;
border: 3px solid rgb(31, 29, 157);
padding: 10px;
margin: auto;
font-family:Arial, Helvetica, sans-serif ;
font-weight: bolder;
border-radius: 20px;
}
.ad {
background-color: rgb(249, 248, 248);
width: 300px;
border: 3px solid rgb(31, 28, 169);
padding: 10px;
margin: auto;
font-family:Arial, Helvetica, sans-serif ;
font-weight: bolder;
border-radius: 20px;
}
.addBtn:hover {
background-color: #bbb;
}
.header:after {
content: "";
display: table;
clear: both;
}
.dlt{
position: absolute;
right: 1rem;
}
.img{
margin:auto;
height: auto;
width: auto;
background-size: auto;
}
</style>
</head>
<body>
<style >
body{
background: url('https://www.freecodecamp.org/news/content/images/size/w2000/2022/09/jonatan-pie-3l3RwQdHRHg-unsplash.jpg') center no-repeat ;
background-size: cover;
height: auto;
width: auto;
}
</style>
<p style="color: bisque;">
Hello, this is a very simple html file.
<br />
Let's build a cool web app!
</p>
<h1 style="color: azure;"><u> Lets do some work...</u> </h1>
<div id="adarsh" class="container">
</div>
<div class="input">
<input id="ad" class="ad" type="text" placeholder="Add a task..." style="width: 400px; height: 20px;" >
<button id="addBtn" class="addBtn">Add</button>
</div>
</body>
<script>
const a = document.getElementById("a")
const adarsh = document.getElementById("adarsh");
const inputvalue = document.getElementById("ad");
let addbtn = document.getElementById("addBtn");
addbtn.addEventListener("click",function(){
if(inputvalue.value!==''){
newElement();
}
})
function newElement() {
let taskbox = document.createElement("div");
taskbox.setAttribute("class","todo");
let check = document.createElement("input");
check.type = "checkbox";
taskbox.appendChild(check);
let task = document.createElement("div");
task.innerHTML= inputvalue.value;
taskbox.appendChild(task);
adarsh.appendChild(taskbox);
let dlt = document.createElement("button");
dlt.innerHTML = "Delete";
dlt.setAttribute("class","dlt");
taskbox.appendChild(dlt);
inputvalue.value = '';
dlt.addEventListener("click",function(){
taskbox.remove();
})
}
document.addEventListener("keydown",function(e){
if(e.keyCode === 13 && inputvalue.value!==''){
newElement();
}
})
</script>
</html>