-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Mohit Kumar <136831716+MOHIT-IITP@users.noreply.github.com>
- Loading branch information
Showing
8 changed files
with
135 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="impstyle.css" /> | ||
<title>Importance of To-Do List</title> | ||
</head> | ||
<body> | ||
<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> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
body { | ||
font-family: Arial, sans-serif; | ||
background: rgb(136, 0, 255); | ||
background: linear-gradient( | ||
0deg, | ||
rgba(65, 45, 253, 1) 48%, | ||
rgba(29, 29, 29, 1) 100% | ||
); | ||
margin: 0; | ||
padding: 20px; | ||
overflow: hidden; | ||
height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: flex-start; | ||
} | ||
.heading { | ||
text-align: center; | ||
color: #f6ac62; | ||
font-family: 'Londrina Outline', cursive; | ||
font-size: 5rem; | ||
padding: 8px 16px; | ||
text-shadow: #000000 3px 4px 10px; | ||
} | ||
.contain { | ||
display: flex; | ||
justify-content: space-around; | ||
align-items: center; | ||
height: 70vh; | ||
} | ||
|
||
.toggle-container { | ||
border: 2px solid black; | ||
border-radius: 10px; | ||
height: auto; | ||
width: 30%; | ||
background-color: #fff; | ||
padding: 15px; | ||
box-shadow: 0 2px 10px white; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
text-align: center; | ||
margin-bottom: 122px; | ||
} | ||
|
||
.toggle-heading { | ||
font-family: 'Londrina Outline', cursive; | ||
font-weight: bolder; | ||
color: #4caf50; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.toggle-paragraph { | ||
line-height: 1.5; | ||
color: #555; | ||
font-family: 'Londrina Outline', cursive; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters