-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (87 loc) · 3.01 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en" data-theme="light">
<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" />
<title>Todo App</title>
<link rel="icon" href="images/favicon-32x32.png" />
<!-- normalize -->
<link rel="stylesheet" href="css/normalize.css" />
<!-- google fonts -->
<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=Josefin+Sans:wght@400;700&display=swap" rel="stylesheet" />
<!-- font awesome -->
<link rel="stylesheet" href="css/all.min.css" />
<!-- css stylesheets -->
<!-- all -->
<link rel="stylesheet" href="css/style.css" />
<!-- small -->
<link rel="stylesheet" href="css/small.css" media="(max-width: 768px)" />
<!-- mobile -->
<link rel="stylesheet" href="css/mobile.css" media="(max-width: 480px)" />
<!-- Large -->
<link rel="stylesheet" href="css/large.css" media="(width > 768px)" />
</head>
<body>
<div class="bg"></div>
<div class="landing">
<!-- header -->
<div class="container">
<header class="row">
<h1 class="logo">TODO</h1>
<div class="theme-icon">
<img src="images/icon-moon.svg" data-theme="light" alt="" />
</div>
</header>
</div>
<!-- input -->
<div class="container">
<div class="row input">
<span class="circle"></span>
<form style="display: flex; flex-grow: 1">
<input type="text" placeholder="Create a new todo..." />
<button class="add-task-btn" style="visibility: hidden"></button>
</form>
</div>
</div>
<!-- list tasks -->
<div class="container">
<main class="list-tasks">
<!-- <div class="row task" data-complete="" data-id=''>
<div class="circle check"></div>
<span class="text-task">Learn Git and Github</span>
<div class="cross"><img src="images/icon-cross.svg" alt="cross icon" /></div>
</div> -->
<div class="last-row row">
<div>
<span class="left-items" style="margin-inline: 5px">0</span>items
left
</div>
<div class="filter">
<span class="active all-opt">All</span>
<span class="active-opt">active</span>
<span class="completed completed-opt">Completed</span>
</div>
<div class="clear-completed">Clear completed</div>
</div>
</main>
</div>
<!-- footer -->
<div class="container">
<footer>
<div class="filter row">
<span class="active all-opt">All</span>
<span class="active-opt">active</span>
<span class="completed completed-opt">Completed</span>
</div>
</footer>
</div>
<!-- reordering -->
<span class="reorder">Drag and drop to reorder list</span>
</div>
<!-- script -->
<script src="app.js"></script>
</body>
</html>