-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (39 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>To-Do List</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav>
<h1>To-Do List</h1>
<input type="text" placeholder="Search Tasks" id="search" />
</nav>
<section id="add-section">
<textarea placeholder="Add Your To-Do Task" id="task"></textarea>
<div id="meta-task">
<input type="date" id="date" />
<input type="time" id="time" />
<input type="submit" id="submit" />
</div>
</section>
</header>
<main id="task-list">
<h2>Due Tasks</h2>
<section id="due-tasks"></section>
<br />
<h2>Upcoming Tasks</h2>
<section id="upcoming-tasks"></section>
</main>
<dialog id="form-validate-dialog">
<div class="dialog-container">
<p>Please fill in the feilds</p>
<button id="form-validate-dialog-close">OK</button>
</div>
</dialog>
<script src="script.js"></script>
</body>
</html>