Hello, developers! I’m excited to share my latest project: a Focus on Day application. This project is ideal for those who want to keep track of their daily focus and ensure they stay on top of their tasks. It’s a great way to enhance your frontend development skills using HTML, CSS, and JavaScript while creating a functional and visually appealing productivity tool.
The Focus on Day is a web application designed to help users stay focused on their daily tasks. With a clean and user-friendly interface, it allows users to set a daily focus and keep track of their progress throughout the day. This project demonstrates how to create a practical productivity tool using modern web development techniques.
Here’s an overview of the project structure:
Focus-on-Day/ ├── index.html ├── style.css └── script.js
To get started with the project, follow these steps:
Clone the repository:
git clone https://github.com/abhishekgurjar-in/Focus-on-Day.git
Open the project directory:
cd Focus-on-Day
Run the project:
The index.html file defines the structure of the Focus on Day application, including input fields for setting the focus and displaying progress. Here’s a snippet:
<!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="style.css" /> <script src="script.js" defer></script> <title>Focus on Day</title> </head> <body> <div class="container"> <h1>Focus on Day</h1> <input type="text" id="focusInput" placeholder="Enter your focus for today..." /> <button id="setFocusButton">Set Focus</button> <div id="focusDisplay"></div> <button id="clearFocusButton">Clear Focus</button> </div> <div class="footer"> <p>Made with ❤️ by Abhishek Gurjar</p> </div> </body> </html>
The style.css file styles the Focus on Day application, ensuring it’s visually appealing and responsive. Below are some key styles:
body { font-family: 'Poppins', sans-serif; background-color: #f4f4f4; display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; } .container { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center; } h1 { margin-bottom: 20px; font-size: 24px; } input[type="text"] { padding: 10px; width: 80%; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } button { padding: 10px 20px; border: none; border-radius: 4px; background-color: #007bff; color: white; font-size: 16px; cursor: pointer; } button:hover { background-color: #0056b3; } #focusDisplay { margin-top: 20px; font-size: 18px; font-weight: bold; color: #333; } .footer { margin-top: 20px; color: #333; }
The script.js file contains the functionality for setting and clearing the daily focus. Here’s a simple snippet for demonstration:
document.getElementById('setFocusButton').addEventListener('click', function() { const focusInput = document.getElementById('focusInput').value; if (focusInput) { document.getElementById('focusDisplay').innerText = `Today's Focus: ${focusInput}`; document.getElementById('focusInput').value = ''; } }); document.getElementById('clearFocusButton').addEventListener('click', function() { document.getElementById('focusDisplay').innerText = ''; });
You can check out the live demo of the Focus on Day project here.
Building the Focus on Day application was a fantastic experience in creating a simple yet effective productivity tool. This project underscores the importance of task management in staying focused and achieving daily goals. By applying HTML, CSS, and JavaScript, we’ve developed an application that helps users keep their focus on track throughout the day. I hope this project inspires you to build your own productivity tools. Happy coding!
This project was developed as part of my continuous learning journey in web development.
Feel free to use this format for your blog post!
The above is the detailed content of Build a Focus on Today Website. For more information, please follow other related articles on the PHP Chinese website!