-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
44 lines (44 loc) · 1.35 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>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>To-Do App</title>
<link rel="stylesheet" href="./styles.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="./script.js"></script>
</head>
<body onload="showAllTodo()">
<div class="hero">
<div class="heading">
<h1>ToDo <span>App</span></h1>
</div>
<div class="hero-form">
<div class="form">
<div class="input-field">
<label for="text">Title</label>
<input
type="text"
placeholder="Enter Your Title"
id="title-field"
/>
</div>
<div class="input-field">
<label for="text">Description</label>
<input
type="text"
placeholder="Write some description"
id="desc-field"
/>
</div>
<div class="action-btn heading">
<!-- <button onclick="showAllTodo()">Show All</button> -->
<button onclick="addToDo()">ADD</button>
</div>
</div>
</div>
</div>
<div class="outputData"></div>
</body>
</html>