-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (77 loc) · 3.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Taskick</title>
<!-- CSS Styles -->
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,600;0,700;1,400;1,500&family=Roboto+Slab:wght@400;500;600;700&family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,500&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="wrapper">
<div class="header-content">
<h1>taskick</h1>
<h2>Need to organize your to do lists? <span>taskick</span>-it</h2>
<p><span>taskick</span> is a simple productivity app which will help you
manage tasks and keep track of accomplishments! <span>taskick</span>
helps you organize your tasks in separate cards so you know exactly what
to do.</p>
<!-- Header Content Div ENDS -->
</div>
<!-- Header Wrapper ENDS -->
</div>
</header>
<main>
<section class="instructions-section">
<div class="wrapper">
<div class="instructions-content">
<h2>How to <span>taskick</span>?</h2>
<p>Organize your tasks in a few clicks:</p>
<ol class="instructions-list">
<li>Create a new task card by clicking on the "Add" button below.</li>
<li>Enter a title for your card (e.g "Work", "Exercise"..).</li>
<li>Start adding tasks to your card. Type your to do item and click the "Add" button.</li>
<li>Keep track of your tasks by checking off, editing and removing items from the card. <em>*to edit a list item - double click on the item's text and enter the new content</em> </li>
<li>Let's <span>taskick</span>-it!</li>
</ol>
<button type="submit" id="add-new-card-btn" class="btn">Add New Task Card </button>
<button type="submit" id="remove-all-cards-btn" class="btn">Remove All Cards </button>
<!-- Instructions Content Div ENDS -->
</div>
<!-- Instructions Wrapper ENDS -->
</div>
</section>
<section class="task-cards-section">
<div class="wrapper">
<div class="main-content">
<h2>Task Board</h2>
<p>Keep all your tasks in one place</p>
<div class="task-board-container">
<!-- Add task cards dynamically here -->
</div>
<!-- Main Container ENDS -->
</div>
<!-- Main Wrapper ENDS -->
</div>
</section>
</main>
<!-- Site Footer -->
<footer>
<div class="wrapper">
<span>© 2020 Karmen Salim<a href="https://junocollege.com/" class="juno-footer-link"> - Created at Juno College</a>
</span>
</div>
</footer>
<!-- Scripts -->
<script src='https://code.jquery.com/jquery-3.5.1.min.js'integrity='sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0='crossorigin='anonymous'></script>
<!-- jQuery Editable -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jeditable.js/2.0.17/jquery.jeditable.min.js'></script>
<!-- jQuery UI -->
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript" src="scripts/app.js"></script>
</body>
</html>