-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.04 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
<html>
<head>
<title>Taskly</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<section class="left-sidebar">
<header><a href="index.html">Taskly</a></header>
<nav>
</nav>
<footer></footer>
</section>
<section class="main-content">
<header>
<div>Files</div>
<div>add folder, add notebook, add quicksheet</div>
<div>search icon</div>
</header>
<section>
<div>File 1 - Tasks</div>
<div>File 2 - Notes</div>
</section>
<section style="display:none">
<article>
<h2>Critical Tasks</h2>
</article>
<article>
<h2>Other Tasks</h2>
</article>
<article>
<h2>Today's Wins</h2>
</article>
<article>
<h2>Progress (goals)</h2>
</article>
<article>
<h2>Exercise</h2>
</article>
<aside>
<h2>Day's Schedule</h2>
</aside>
</section>
</section>
</body>
</html>