-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
250 lines (239 loc) · 9.06 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; font-src 'self' https://fonts.gstatic.com;">
<link rel="icon" href="./images/logo.png" type="image/x-icon" />
<title>Todo List</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<script src="main.js" type="text/javascript"></script>
<link rel="stylesheet" href="./css/index.css" />
</head>
<body>
<nav class="nav">
<div class="brand">
<ul>
<li>
<a href="/">
<svg
viewBox="0 0 88 88"
xmlns="http://www.w3.org/2000/svg"
class="logo_1OKcB"
>
<g fill="none" fill-rule="evenodd">
<rect></rect>
<path
d="M30.755 33.292l-7.34 8.935L40.798 56.48a5.782 5.782 0 008.182-.854l31.179-38.93-9.026-7.228L43.614 43.83l-12.86-10.538z"
fill="#FFB000"
></path>
<path
d="M44 78.1C25.197 78.1 9.9 62.803 9.9 44S25.197 9.9 44 9.9V0C19.738 0 0 19.738 0 44s19.738 44 44 44 44-19.738 44-44h-9.9c0 18.803-15.297 34.1-34.1 34.1"
fill="#4772FA"
></path>
</g>
</svg>
<h1>TO DO</h1>
</a>
</li>
</ul>
</div>
<div class="navChild">
<ul>
<li>
<a href="/"> Home </a>
</li>
<li>
<a href="https://github.com/anabildebnath/to-do-main" target="_blank"> Github </a>
</li>
<li>
<a href="https://anabildebnath.netlify.app/" target="_blank"> About Developer</a>
</li>
<li>
<a href="https://youtu.be/C8F7N1iMDYA?si=yemGSUhTNy1Wxf7Q" target="_blank">Demo Video</a>
</li>
<li>
<a href="./authentication.html">Login</a>
</li>
<Account />
</ul>
</div>
</nav>
<div class="app">
<div class="homepage">
<div class="homeDescription">
<h2>Stay Organized</h2>
<h2>Stay Creative</h2>
<p>
Join to capture ideas, organize life, and do something creative
everyday.
</p>
<div class="homeButtons">
<a href="./authentication.html" type="button">Login</a>
</div>
</div>
<div class="homeImage">
<img src="images/todo.png" alt="" />
</div>
</div>
<div class="features">
<div class="feature">
<div class="featureImage">
<img src="./images/feature-1.png" alt="" srcset="" />
</div>
<div class="featureTitle">
<h2>Organize everything in life</h2>
<p>
Whether there is a work-related task or a personal goal, TickTick
is here to help you manage all your to-dos.
</p>
</div>
</div>
<div class="feature">
<div class="featureTitle">
<h2>Get reminded anytime, anywhere</h2>
<p>
Set a reminder to ease your mind off worrying about missing
deadlines from now on.
</p>
</div>
<div class="featureImage">
<img src="./images/feature-2.png" alt="" srcset="" />
</div>
</div>
<div class="feature">
<div class="featureImage">
<img src="./images/feature-3.png" alt="" srcset="" />
</div>
<div class="featureTitle">
<h2>Flexible calendar views</h2>
<p>
With five different calendar views, you can check and handle your
schedules in a more convenient way.
</p>
</div>
</div>
<div class="feature">
<div class="featureTitle">
<h2>Collaborating with others</h2>
<p>
From family weekend plan to teamwork, share lists and assign tasks
on the go. Stay productive together!
</p>
</div>
<div class="featureImage">
<img src="./images/feature-4.png" alt="" srcset="" />
</div>
</div>
</div>
<div class="lastFeature">
<h1>Sync across multiple platforms</h1>
<p>
30+ features work seamlessly across 10+ platforms. Getting things done
has never been this easy.
</p>
<img src="./images/feature-5.png" alt="" />
<div class="homeButtons">
<a
href="https://anabildebnath.netlify.app/"
type="button"
target="_blank"
>About Developer</a
>
<a
href="https://github.com/anabildebnath"
type="button"
target="_blank"
>Github</a
>
</div>
</div>
<div class="footer">
<div class="footerDiv">
<div class="element">
<h5>Pojects</h5>
<ul>
<li><a href="https://swequizer.netlify.app/login" target="_blank">SweQuzier</a></li>
<li><a href="https://project350-rust.vercel.app/" target="_blank">Book Distribution System</a></li>
<li><a href="https://github.com/anabildebnath/TicketFlutterApp" target="_blank">Ticket Booking Application</a></li>
<li><a href="https://anabildebnath.netlify.app/" target="_blank">Portfolio</a></li>
<li><a href="https://github.com/anabildebnath/Sust-Cultural-Event-WebApp" target="_blank">Sust Cultural Platform</a></li>
</ul>
</div>
<div class="element">
<h5>Support</h5>
<ul>
<li><a href="https://www.linkedin.com/in/anabildebnath/" target="_blank">Help Center</a></li>
<li><a href="https://www.linkedin.com/in/anabildebnath/" target="_blank">FAQ</a></li>
<li><a href="https://www.linkedin.com/in/anabildebnath/" target="_blank">Bugs</a></li>
</ul>
</div>
<div class="element">
<h5>Resources</h5>
<ul>
<li><a href="https://github.com/anabildebnath/to-do-main" target="_blank">Repository</a></li>
<li><a href="https://copper-winny-13.tiiny.site" target="_blank">Refer to Friends & Colleagues</a></li>
<li><a href="" target="_blank">Integrations</a></li>
</ul>
</div>
<div class="element">
<h5>About</h5>
<ul>
<li><a href="https://copper-winny-13.tiiny.site" target="_blank">About Me</a></li>
<li><a href="https://anabildebnath.netlify.app/" target="_blank">Portfolio</a></li>
<li><a href="https://github.com/anabildebnath/to-do-main" target="_blank">Github</a></li>
</ul>
</div>
<div class="element">
<h5>Legal</h5>
<ul>
<li><a href="https://www.dataguidance.com/notes/bangladesh-data-protection-overview" target="_blank" target="_blank">Terms</a></li>
<li><a href="http://bdlaws.minlaw.gov.bd/act-1261.html" target="_blank">Privacy</a></li>
<li><a href="https://www.fortinet.com/resources/cyberglossary/data-security#:~:text=Data%20security%20is%20the%20process,and%20organizations'%20policies%20and%20procedures." target="_blank">Security</a></li>
</ul>
</div>
<div class="element social">
<h5>Contact me on</h5>
<div class="socialLinks">
<a
href="https://www.linkedin.com/in/anabildebnath/"
target="_blank"
>
<img src="./images/linked.png" alt=""
/></a>
<a
href="https://www.facebook.com/anabildebnathabir/"
target="_blank"
>
<img src="./images/fb.png" alt=""
/></a>
<a
href="https://www.instagram.com/anabildebnathabir/"
target="_blank"
>
<img src="./images/insta.png" alt=""
/></a>
<a href="https://x.com/AnabilDebnath" target="_blank">
<img src="./images/x.png" alt=""
/></a>
<a href="https://github.com/anabildebnath" target="_blank">
<img src="./images/git.png" alt=""
/></a>
<a
href="https://www.youtube.com/channel/UCJDCqEmsfJKBKfu4ali-8Kg"
target="_blank"
><img src="./images/youtube.png" alt=""
/></a>
<a href="https://anabildebnath.netlify.app/" target="_blank">
<img src="./images/log.png" alt=""
/></a>
</div>
</div>
</div>
<div class="footerDivLast">
<p>© 2024 Anabil Debnath Abir</p>
</div>
</div>
</div>
</body>
</html>