-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (60 loc) · 2.02 KB
/
index.html
File metadata and controls
70 lines (60 loc) · 2.02 KB
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
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo List App</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Header Section -->
<header>
<nav>
<h1>TODO LIST Application</h1>
</nav>
</header>
<main>
<section class="container">
<!-- Input Form -->
<div class="form-container">
<h1>Add Some List</h1>
<form id="form-section" autocomplete="off">
<div class="input-group">
<label for="todo-title">Insert something</label> <br>
<input
type="text"
maxlength="50"
id="todo-title"
placeholder="Ex. Social Homework"
required
> <br>
<p id="char-left"></p>
</div>
<div class="input-group">
<label for="todo-date">Place finished date</label> <br>
<input
type="date"
id="todo-date"
required
>
</div>
<button type="submit" id="submit-todo">Submit</button>
</form>
</div>
<!-- Todo Section -->
<div class="current-list">
<h3>Your Todo List</h3>
<div class="list-container" id="todos">
</div>
</div>
<!-- Finished Todo -->
<div class="finished-todo">
<h3>Your Finished Todo</h3>
<div class="list-container" id="finished-todo">
</div>
</div>
</section>
</main>
<script src="js/script.js" type="text/javascript"></script>
</body>
</html>