-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (28 loc) · 836 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="manifest" href="manifest.json" />
<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>Dopad - Todo app</title>
<link rel="icon" type="image/x-icon" href="assets/favicon.png" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<main class="container">
<button class="clear-tasks">Delete all</button>
<ul class="task-list">
<h1>Task list</h1>
<li
aria-label="create new task"
role="textbox"
id="new-task"
contenteditable="true"
placeholder="Add a new task..."
></li>
</ul>
</main>
</body>
<script src="script.js"></script>
</html>