-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (72 loc) · 2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Project Board</title>
<link rel="stylesheet" href="assets/styles/app.css" />
<script src="assets/scripts/app.js" defer></script>
</head>
<body>
<template id="tooltip">
<h2>More Info</h2>
<p></p>
</template>
<header id="main-header">
<h1>Task Planner</h1>
</header>
<section id="active-projects">
<header>
<h2>Active Tasks</h2>
</header>
<ul>
<li
id="p1"
data-extra-info="Got lifetime access, but would be nice to finish it soon!"
class="card"
draggable="true"
>
<h2>Start building project 'X'</h2>
<p>Deserunt id cupidatat excepteur ea Lorem eiusmod do ea et.</p>
<button class="alt">More Info</button>
<button>Finish</button>
</li>
<li
id="p2"
data-extra-info="Non dolor esse dolore aliqua sunt id exercitation Lorem sint et minim."
class="card"
draggable="true"
>
<h2>Exercise today</h2>
<p>
In qui commodo deserunt incididunt ad ad ex veniam ea duis in do.
</p>
<button class="alt">More Info</button>
<button>Finish</button>
</li>
</ul>
</section>
<section id="finished-projects">
<header>
<h2>Finished Tasks</h2>
</header>
<ul>
<li
id="p3"
data-extra-info="Aute ea non qui commodo exercitation pariatur reprehenderit et."
class="card"
draggable="true"
>
<h2>Finish the new book</h2>
<p>
Aute labore ea enim labore sint nostrud labore commodo exercitation
labore.
</p>
<button class="alt">More Info</button>
<button>Activate</button>
</li>
</ul>
</section>
</body>
</html>