An open API service indexing awesome lists of open source software.

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

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.