Skip to content

Latest commit

 

History

History
50 lines (50 loc) · 2.86 KB

README.md

File metadata and controls

50 lines (50 loc) · 2.86 KB

Future Intern Internship Projects

Project 1 : Calculate Me - Web Calculator

Web-based calculator that can perform basic arithmetic operations.

Live at : Calculate Me


Calculate Me - Web Calculator

Project 2 : To - Do Web App

My To-Do Web App is a simple and efficient tool for managing tasks. Built with HTML, CSS, and JavaScript, it provides a responsive design that works well on desktops, tablets, and mobile devices.

Key Features:

  1. Task Addition

    Users can easily add tasks by typing in the input field and clicking the "Add Task" button or pressing "Enter." New tasks appear in the "Pending Tasks" section with a timestamp.

  2. Task Completion

    Each task includes a checkbox to mark it as completed. Completed tasks move to the "Completed Tasks" section, with a background color change to signify completion.

  3. Task Editing

    Users can edit tasks by clicking the "Edit" button (pencil icon). A prompt allows modification of the task description, and the timestamp updates if the task's completion status changes.

  4. Task Deletion

    Tasks can be deleted by clicking the "Delete" button (trash icon), immediately removing them from the list.

Live at : My To-Do App


My To Do Web App

Project 3 : Temperature Converter

The Temperature Converter website allows users to convert temperatures between Celsius, Fahrenheit, and Kelvin. Users select the input and output units from dropdown menus, enter a temperature value, and click the "Convert" button to see the result displayed in the output field.

Key Features:

  1. Unit Selection

    Users can choose the input and output temperature units from the available options (Celsius, Fahrenheit, Kelvin).

  2. Temperature Conversion

    The website performs accurate conversions between the selected units. The conversion logic supports:

    • Celsius to Fahrenheit and Kelvin
    • Fahrenheit to Celsius and Kelvin
    • Kelvin to Celsius and Fahrenheit
  3. Input Validation

    The website checks for valid numeric input. If the input is invalid or empty, an error message is displayed.

Live at : Temperature Converter


Temperature Converter