-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtasks.html
More file actions
88 lines (88 loc) · 3.17 KB
/
Copy pathtasks.html
File metadata and controls
88 lines (88 loc) · 3.17 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>isDone | Tasks</title>
<!-- Css Main File -->
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
<!-- Normalize Css File -->
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<!-- Uploading The Main Font -->
<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=Hammersmith+One&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"/>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<main class="w-full flex items-stretch justify-start">
<!-- Start Aside For Big Screens -->
<aside class="py-7 px-12 shadow-lg hidden md:block">
<a href="index.html"><img src="images/logo.webp" alt="isDone Logo" width="120px" height="auto"></a>
<div class="pages flex flex-col gap-5 mt-10">
<span class="active">
<a href="tasks.html">
<i class="fa-solid fa-list-check"></i>
Tasks
</a>
</span>
<span>
<a href="tasks.html">
<i class="fa-solid fa-user"></i>
Profile
</a>
</span>
</div>
</aside>
<!-- End Aside For Big Screens-->
<!-- Start For Small Screens -->
<div class="links flex items-center justify-center gap-5 rounded-full p-2">
<span class="rounded-full active">
<i class="fa-solid fa-list-check py-3 px-3"></i>
</span>
<span class="rounded-full">
<i class="fa-solid fa-user py-3 px-3"></i>
</span>
</div>
<!-- End For Small Screens -->
<!-- Start Tasks Page -->
<section class="tasks-section py-7 px-10 w-full">
<div class="section-title relative w-max">
<h1 class="text-3xl relative">Tasks</h1>
</div>
<!-- Tasks List -->
<div class="tasks-list mt-10 flex flex-col items-stretch gap-3">
</div>
<!-- Add Task Plus Button -->
<div class="add-task fixed p-5 flex items-center justify-center false">
<i class="fa-solid fa-plus"></i>
</div>
<!-- Delete Tasks Button -->
<div class="delete-tasks fixed p-5 flex items-center justify-center false">
<i class="fa-solid fa-trash"></i>
</div>
</section>
<!-- End Tasks Page -->
<!-- Start Create Task Popup -->
<div class="task-pop flex flex-col items-stretch gap-5">
<span>Create A New Task :</span>
<label for="task-name">Task Name :</label>
<input type="text" name="task-name" id="task-name" placeholder="Minimum 4 Characters">
<div class="task-type mt-2 flex flex-col items-center gap-1">
<input type="radio" name="type" id="personal-type">
<label for="personal-type">Personal</label>
<input type="radio" name="type" id="work-type">
<label for="work-type">Work</label>
<input type="radio" name="type" id="family-type">
<label for="family-type">Family</label>
</div>
<button not-clickable>Create The Task</button>
</div>
<!-- End Create Task Popup -->
</main>
<script type="text/javascript" src="script.js"></script>
</body>
</html>