-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (40 loc) · 1.24 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
<!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" />
<link rel="stylesheet" href="./mytodo.css" />
<title>Kenny Todo App-Js</title>
</head>
<body>
<h1 class="heading"><span>ToDo</span> List</h1>
<div class="top-container">
<div class="form">
<input
type="text"
name="todo"
class="input"
autocomplete="off"
required autofocus
/>
<label for="todo" class="label-box"
><span class="label-text">Enter Item</span></label
>
</div>
<button class="addBtn">Add</button>
</div>
<section class="list-container"></section>
<section class="displayRecord"></section>
<div class="search-container">
<input type="text" class="search" placeholder="Enter Your List Name..." />
<button class="searchBtn">Search</button>
<button class="saveBtn">Save</button>
</div>
<button class="closeBtn">Close</button>
<footer class="foot-message">
KennyTech © 2021 || All Rights Reserved
</footer>
<script src="./mytodo.js"></script>
</body>
</html>