forked from Groverio/To-Do-List
-
Notifications
You must be signed in to change notification settings - Fork 0
/
imp.html
225 lines (209 loc) · 6.18 KB
/
imp.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Importance of To-Do List</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
/>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
:root {
--primary-color: #6366f1;
--accent-color: #ec4899;
--background-light: #f9fafb;
--text-dark: #1f2937;
--gray: #4b5563;
--card-bg: #fff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--background-light);
color: var(--text-dark);
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
.top-nav {
background: white;
box-shadow: var(--shadow-sm);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 100;
width: 100vw;
margin-bottom: 2rem;
}
.nav-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-brand {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
/* Header */
.heading {
font-size: 2.8rem;
color: var(--primary-color);
text-align: center;
margin: 1rem 0;
font-weight: 700;
}
/* Container */
.contain {
display: flex;
flex-direction: column;
gap: 2rem;
width: 100%;
max-width: 800px;
margin: 2rem 15rem auto;
padding-bottom: 15rem;
}
.toggle-container {
background: var(--card-bg);
border: 1px solid var(--gray);
border-radius: 12px;
padding: 20px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
}
.toggle-container:hover {
transform: translateY(-5px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.toggle-heading {
color: var(--primary-color);
font-size: 1.8rem;
margin-bottom: 10px;
font-weight: 600;
}
.toggle-paragraph {
color: var(--text-dark);
line-height: 1.6;
}
.toggle-paragraph strong {
color: var(--accent-color);
}
/* Footer */
.footer {
background-color: #212934;
color: white;
margin-top: 5rem;
padding: 1rem;
text-align: center;
font-size: 0.875rem;
width: 100vw;
position: fixed;
bottom: 0;
}
.social-links {
display: flex;
gap: 1rem;
justify-content: center;
margin-top: 0.5rem;
}
.social-link {
color: var(--primary-color);
font-size: 1.5rem;
transition: color 0.3s ease;
}
.social-link:hover {
color: var(--accent-color);
}
/* Responsive */
@media (max-width: 768px) {
.heading {
font-size: 2rem;
}
.toggle-heading {
font-size: 1.5rem;
}
.toggle-container {
padding: 15px;
}
}
</style>
</head>
<body>
<nav class="top-nav">
<div class="nav-content">
<a href="index.html" class="nav-brand">
<i class="fas fa-chevron-left"></i>
Back to Home
</a>
</div>
</nav>
<h1 class="heading">Importance of a To-Do List 📝</h1>
<div class="contain">
<div class="toggle-container">
<h2 class="toggle-heading">Enhanced Organization 📅</h2>
<p class="toggle-paragraph">
A to-do list keeps tasks organized, allowing you to view everything at
a glance and prioritize effectively. It reduces clutter and ensures
you don’t forget deadlines.
<strong>Example:</strong> When planning a group project, listing tasks
like researching and drafting helps assign roles and track progress.
</p>
</div>
<div class="toggle-container">
<h2 class="toggle-heading">Increased Productivity 🚀</h2>
<p class="toggle-paragraph">
A clear task list helps you focus on your goals, minimizing
distractions and boosting efficiency. By breaking tasks into smaller
steps, you avoid feeling overwhelmed and improve your productivity.
<strong>Example:</strong> Instead of tackling a large project at once,
break it down into tasks like "research," "outline," and "proofread."
This makes the project feel more manageable, and checking off each
completed task gives you a sense of achievement, motivating you to
continue.
</p>
</div>
<div class="toggle-container">
<h2 class="toggle-heading">Reduced Stress 😌</h2>
<p class="toggle-paragraph">
A to-do list reduces the mental burden of remembering tasks, lowering
anxiety levels. Writing everything down prevents the worry of
forgetting important responsibilities.
<strong>Example:</strong> If your week is packed, listing your tasks
helps you prioritize and stay on track without feeling overwhelmed.
</p>
</div>
</div>
<footer class="footer">
© 2024. All rights reserved.
<div class="social-links">
<a
href="https://www.instagram.com/"
target="_blank"
class="social-link"
>
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.facebook.com/" target="_blank" class="social-link">
<i class="fab fa-facebook"></i>
</a>
<a href="https://twitter.com/" target="_blank" class="social-link">
<i class="fab fa-twitter"></i>
</a>
</div>
</footer>
</body>
</html>