-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (31 loc) · 1.19 KB
/
Copy pathindex.html
File metadata and controls
36 lines (31 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tick Task</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<div class="container">
<div class="header">
<h1>TICK TASK</h1>
<p>Make all your works easier with <u>Tick Task</u>!</p>
<div class="input-container">
<input type="text" id="taskInput" placeholder="Task" maxlength="100">
<button class="add-btn" id="addBtn">+</button>
</div>
</div>
<div class="task-container" id="taskContainer">
<div class="empty-state" id="emptyState">
No tasks yet. Add one above to get started!
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>