-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (101 loc) · 3.69 KB
/
Copy pathindex.html
File metadata and controls
109 lines (101 loc) · 3.69 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="fav.png" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
/>
<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=Noto+Serif+NP+Hmong:wght@400..700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Tasky</title>
</head>
<body>
<section id="container">
<div class="top">
<div class="top-section">
<h1 class="heading">📃Tasky</h1>
<form id="create-list">
<input
type="text"
name="title"
id="title"
class="text"
placeholder="Title..."
/>
<textarea
name="note"
class="text"
id="text-area"
placeholder="Write Something..."
></textarea>
<button id="createbtn">
<span>
<svg
height="24"
width="24"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M0 0h24v24H0z" fill="none"></path>
<path
d="M11 11V5h2v6h6v2h-6v6h-2v-6H5v-2z"
fill="currentColor"
></path>
</svg>
Create
</span>
</button>
</form>
</div>
<div class="navbar">
<ul class="feature">
<li class="all">All</li>
<li class="pending">Pending</li>
<li class="complete">Complete</li>
</ul>
<div class="group">
<svg class="icon" aria-hidden="true" viewBox="0 0 24 24">
<g>
<path
d="M21.53 20.47l-3.66-3.66C19.195 15.24 20 13.214 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c2.215 0 4.24-.804 5.808-2.13l3.66 3.66c.147.146.34.22.53.22s.385-.073.53-.22c.295-.293.295-.767.002-1.06zM3.5 11c0-4.135 3.365-7.5 7.5-7.5s7.5 3.365 7.5 7.5-3.365 7.5-7.5 7.5-7.5-3.365-7.5-7.5z"
></path>
</g>
</svg>
<input placeholder="Search" type="search" class="input" />
</div>
</div>
</div>
<div class="cards">
<!-- <div class="card" data-id="0">
<input type="checkbox" class="check" />
<h2 class="title">Project Update</h2>
<p class="description">
This is a short description of the project update. It provides a
quick overview of the current status and key highlights. The content
is limited to avoid overflow and keep the card clean and readable.
</p>
<div class="buttons">
<button class="edit-btn">Edit</button>
<button class="delete-btn">Delete</button>
</div>
</div> -->
</div>
<!-- Edit Page -->
<div class="page hide">
<input type="text" placeholder="Title..." class="page-title" />
<textarea class="page-text" placeholder="Type Something..."></textarea>
<button class="save-btn">Save</button>
<button class="cancel-btn">cancel</button>
</div>
</section>
<script src="script.js"></script>
</body>
</html>