Build a Focus on Today Website

Abhishek Gurjar - Sep 1 - - Dev Community

Introduction

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.

Project Overview

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.

Features

  • User-Friendly Interface: The application has a simple and intuitive design, making it easy for users to set and manage their daily focus.
  • Responsive Design: The application is fully responsive, providing an optimal viewing experience on both desktop and mobile devices.
  • Task Management: Users can set their focus for the day and track their progress as they work towards achieving their goals.

Technologies Used

  • HTML: Provides the structure for the Focus on Day application.
  • CSS: Styles the application to create a clean and responsive design.
  • JavaScript: Manages the interactive elements, including task management and progress tracking.

Project Structure

Here’s an overview of the project structure:

Focus-on-Day/
├── index.html
├── style.css
└── script.js
Enter fullscreen mode Exit fullscreen mode
  • index.html: Contains the HTML structure for the Focus on Day application.
  • style.css: Includes CSS styles to create an engaging and responsive design.
  • script.js: Manages the interactive elements, such as setting tasks and tracking progress.

Installation

To get started with the project, follow these steps:

  1. Clone the repository:

    git clone https://github.com/abhishekgurjar-in/Focus-on-Day.git
    
  2. Open the project directory:

    cd Focus-on-Day
    
  3. Run the project:

    • Open the index.html file in a web browser to view the Focus on Day application.

Usage

  1. Open the application in a web browser.
  2. Set your daily focus by entering a task or goal in the input field.
  3. Track your progress as you work through the day.
  4. Update or change your focus as needed.

Code Explanation

HTML

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>
Enter fullscreen mode Exit fullscreen mode

CSS

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;
}
Enter fullscreen mode Exit fullscreen mode

JavaScript

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 = '';
});
Enter fullscreen mode Exit fullscreen mode

Live Demo

You can check out the live demo of the Focus on Day project here.

Conclusion

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!

Credits

This project was developed as part of my continuous learning journey in web development.

Author

Feel free to use this format for your blog post!

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player