-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (57 loc) · 2.25 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WKQHV1WNXS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WKQHV1WNXS');
</script>
<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>Task Manager - Simple Todo App in Javascript</title>
<meta name="description"
content="Simple To-Do App written in vanilla javascript that saves the data in the browsers' local storage">
<!-- Scripts -->
<script src="js/app.js" type="module" defer></script>
<!-- Styles -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="container">
<!-- input form -->
<section>
<form class="form" data-id="input-form">
<input class="input-field form-control" type="text" placeholder="New task" data-id="input-text"
required />
<input class="btn" type="submit" value="" />
</form>
</section>
<!-- tasks placeholder -->
<section>
<ul data-id="task-list"></ul>
</section>
<!-- tabs -->
<section>
<nav class="tabs">
<ul class="tab">
<li class="tab-item selected"><a href="#" data-id="show-all-btn">All</a></li>
<li class="tab-item"><a href="#" data-id="show-active-btn">Active</a></li>
<li class="tab-item"><a href="#" data-id="show-completed-btn">Completed</a></li>
</ul>
</nav>
</section>
</div>
<footer>
<span>© 2024 <a href="https://github.com/fdvmoreira" title="Flavio's GitHub Profile" target="_blank">Flavio
Moreira</a></span>
<div class="github-logo">
<a href="https://github.com/fdvmoreira/task-manager" title="Source code" target="_blank"><img
src="assets/icons8-github-48.png" alt="GitHub icon"></a>
</div>
</footer>
</body>
</html>