-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (48 loc) · 1.45 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
<!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" />
<title>Todo List App</title>
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="container">
<h1>Todo App</h1>
<form class="todo-form">
<input
type="text"
class="todo-input"
title="Enter your task here."
placeholder="Add a Todo..."
autofocus
required
/>
<button
type="submit"
class="add-button"
title="Press 'Enter' to add a task"
>
+
</button>
</form>
<ul class="todo-items">
<!-- dummy todo list item -->
<!-- <li class="item">
<input id="checkbox" data-key="" class="checkbox" type="checkbox" />
<label for="checkbox" class="item-name">
This is an inbox layout.
</label>
<button id="delete" data-key="" class="delete-button">
<img class="delete-icon" data-key="" src="assets/images/delete.png" />
</button>
</li> -->
<!-- dummy todo list item -->
</ul>
</div>
<div id="snackbar">Input should not be empty!!</div>
<script src="js/main.js"></script>
</body>
</html>