-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (47 loc) · 1.69 KB
/
index.html
File metadata and controls
52 lines (47 loc) · 1.69 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
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Todo app</title>
<link rel="stylesheet" href="./style/style.css">
</head>
<body class="night">
<main>
<header id="add-task-section">
<div id="top-section">
<h1>TODO</h1>
<img src="./images/icon-sun.svg" id="sun-icon" alt="Sun Icon" title="Turn the lights on">
</div>
<!-- TASK INPUT -->
<form class="input-task-tab task-tab task-dark">
<label id="submit-button-label">
<div id="input-hover-cap" class="on-hover-submit submit-dark">
<!-- <div class="plus-sign-container">
<div class="plus-sign-1 submit-light"></div>
<div class="plus-sign-2 submit-light"></div>
</div> -->
</div>
<input type="submit" id="real-submit-button" onclick="event.preventDefault()" value="">
</label>
<input type="text" id="input-value" maxlength="30" placeholder="Create a new todo...">
</form>
</header>
<!-- TASK INPUT -->
<section id="list">
</section>
<section id="control-panel" class="task-dark first-task last-task control-panel-dark">
<p id="items-left-btn">0 items left</p>
<ul>
<li id="all">All</li>
<li id="active">Active</li>
<li id="completed">Completed</li>
</ul>
<p id="clear-completed-btn">Clear Completed</p>
</section>
<div id="filters-new-pos" class="task-dark hidden"></div>
</main>
<script src="js/script.js"></script>
</body>
</html>