This project is a simple calculator application built using HTML, CSS, and JavaScript. It provides a user-friendly interface for performing basic arithmetic operations.
calculator
├── public
│ └── index.html # HTML structure for the calculator application
├── src
│ ├── script.js # JavaScript code for calculator functionality
│ └── styles.css # CSS styles for the calculator application
├── vercel.json # Configuration for deploying on Vercel
├── package.json # npm configuration file
└── README.md # Documentation for the project
To get started with this project, follow these steps:
-
Clone the repository:
git clone <repository-url> cd calculator
-
Install dependencies:
npm install
-
Run the application: You can open the
public/index.html
file in your web browser to view the calculator.
This project can be deployed on Vercel. Ensure you have a vercel.json
file configured for deployment settings.
- Basic arithmetic operations: addition, subtraction, multiplication, and division.
- User-friendly interface with responsive design.
- Clear and backspace functionality.
- This project utilizes Tailwind CSS for styling.
- Math.js is used for performing mathematical operations.