-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (41 loc) · 1.31 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
<!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">
<title>Simple Todo List</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="heading">Simple Todo list</h1>
<div class="todo-adder">
<input type="text" placeholder="Add Your Todo" class="get-array-js todoname">
</div>
<div class="date-time-btn-input">
<p class="titles">Date</p>
<p class="titles">Time</p>
<p></p>
<input type="date" class="js-get-date date-input">
<input type="time" class="js-get-time time-input">
<button onclick="
addArray();
" class="add-btn"> <img src="https://i.postimg.cc/8zvKXzww/add-24dp-E8-EAED-FILL0-wght400-GRAD0-opsz24.png" alt="add_image" class="add-image">Add</button>
</div>
<h2>Your Todo(s)</h2>
<div class="todo-container">
<div class="for-titles">
<p>Todo Name</p>
<p>Date</p>
<p>Time</p>
<p>Action</p>
</div>
<div class="js-todo-list todolist-sec">
</div>
</div>
<div class="ad-container">
<p class="ad">Made by <span class="manto999"> MANTO999</span></p>
</div>
<script src="main.js"></script>
</body>
</html>