A simple calculator web app built with HTML, CSS, and JavaScript.
This app allows users to perform basic arithmetic operations directly in the browser both mouse and keyboard input.
- Perform addition, subtraction, multiplication, and division
- Clear input and delete individual characters
- Use either keyboard or on-screen buttons to enter expressions
- Evaluate expressions
calculator/
├── index.html # Webpage structure
├── script.js # JavaScript functionality
└── style.css # App styling
- Clone the repository
- Open
index.htmlin any web browser
This project was created while following a front-end tutorial by [GreatStack].
I learned about DOM manipulation, keybaord and click event handling, and basic UI logic for calculators.