-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (33 loc) · 1.08 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
<!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, maximum-scale=1.0, user-scalable=0" />
<title>ToDo List</title>
<link rel="icon" href="./pics/icon.svg" type="image/icon type" />
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<div class="container">
<h1 class="title">Hey! Let’s create tasks 📝</h1>
<div class="input-container">
<input type="text" id="input" placeholder="Enter your note" autofocus />
<button class="input-button">
<span class="input-button-text">Add</span>
</button>
</div>
<p class="tasks-summary">
You have <span class="tasks-count"></span> task<span class="to-add-s"
>s</span
>
to complete.
</p>
<ul class="tasks-container"></ul>
</div>
<div class="cursor initially-hidden"></div>
<script src="./js/main.js" type="module"></script>
</body>
</html>