This repository was archived by the owner on Jul 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.27 KB
/
Copy pathindex.html
File metadata and controls
41 lines (41 loc) · 1.27 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
37
38
39
40
41
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css" />
<script src="./index.js" defer></script>
<title>Task Tree</title>
<link rel="icon" type="image/png" href="bonsai_icon.png">
</head>
<body>
<div id="container">
<section class="todo" id="content">
<h2>Your Task Tree!</h2>
<div class="input">
<input
type="text"
class="input-field"
id="todoInput"
placeholder="Add a new task"
/>
<button class="btn">Add</button>
</div>
<ul class="scroll">
<li id="todoList"></li>
</ul>
<div>
<hr class="counter" />
<div class="counter-container">
<p><span id="todoCount">0</span> tasks remaining</p>
<p><span id="totalCount">0</span> tasks total</p>
<p><span id="completedCount">0</span> tasks completed</p>
</div>
</div>
</section>
<div id="image-container">
<img id="conditional-image" src="" alt="Conditionally Displayed Image" />
</div>
</div>
</body>
</html>