https://github.com/codeupjewell/building-a-simple-calculator-using-html-css-js
Building a simple calculator using HTML, CSS, JS
https://github.com/codeupjewell/building-a-simple-calculator-using-html-css-js
calculator css html html-css-javascript javscript
Last synced: 10 months ago
JSON representation
Building a simple calculator using HTML, CSS, JS
- Host: GitHub
- URL: https://github.com/codeupjewell/building-a-simple-calculator-using-html-css-js
- Owner: CodeUpJewell
- Created: 2022-10-21T17:03:24.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-21T17:13:16.000Z (over 3 years ago)
- Last Synced: 2025-07-01T12:01:57.422Z (11 months ago)
- Topics: calculator, css, html, html-css-javascript, javscript
- Language: HTML
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple-calculator-using-HTML-CSS-Javascript
Project Overview
In this project I will be utilizing HTML,CSS and JS to build a working simple calculator.
Project Files:
index.html Contains all our HTML properties.
index.js Contains our Javascript properties.
style.css Contains our CSS properties.
Components of this Project:
• Mathematical Operators: Addition (+), Subtraction (-), Multiplication (*), and Division (/).
• Digits and Decimal Button: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, .
• Display Screen: It displays the mathematical expression and the result.
• Clear Screen Button: It clear all mathematical values.
• Calculate button (=): It evaluates the mathematical expression and returns the result.
• This calculator can perform basic mathematical operations like addition, subtraction, multiplication, and division.