-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (44 loc) · 1.27 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
<!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="styles.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
</style>
<script src="index.js" defer></script>
<title>Todo App Vanilla JS</title>
</head>
<body>
<div class="container">
<h1 class="title">TO-DO APP</h1>
<hr>
<div id="insertTask">
<input type="text" id="inputTask" placeholder="Add task" pattern="[a-z]{4,8}" title="4 to 8 lowercase letters">
<span class="validity"></span>
<button id="btn-add">Add</button>
</div>
<!-- <hr> -->
</div>
<div class="container">
<div id="general">
<p>To-do list</p>
<ol id="tasks">
<!-- <li>
</li> -->
</ol>
</div>
<button id="btn-clearAll">Clear All</button>
<hr>
<div id="completed">
<p>Completed Tasks</p>
<ol id="done">
<!-- <li>
</li> -->
</ol>
</div>
</div>
</body>
</html>