-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·41 lines (31 loc) · 1019 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./assets/css/index.css">
<title>To Do List DOM Demo</title>
</head>
<body>
<header>
<h2>Todo List Application</h2>
</header>
<input type="text" name="input_todo" id="input_todo">
<button id="input_button">Add Todo</button>
<br>
<br>
<input type="text" name="search_input" id="input_search">
<button id="search_button">Search</button>
<button id="reset_search_button">↺</button>
<div id="output_todo">
</div>
<br>
<div id="update_form_group">
<input type="text" name="input_update" id="input_update">
<input type="checkbox" name="done_checkbox" id="done_checkbox">
<button id="update_button">Update</button>
</div>
<script src="./assets/js/index.js"></script>
</body>
</html>