Title: "Calculator" is our application's title.
Output Screen: The output screen is where all text will be displayed. User inputs are typed and results are calculated based on that input. Again, we can consider this in two parts as follows:
- Question Output: This will be the input given by the user.
- Answer Output: This will be the result calculated from user input.
Operations: This calculator can perform following operations which are listed below:
Addition
Substraction
Multiplication
Division
Persentage
Square root
index.html
style.css
logic.js
- Basic knowledge of HTML, CSS and JavaScript needed.
The project contains HTML, CSS, and JavaScript files. The HTML file adds structure, followed by styling using CSS and JavaScript adds functionality to it and for making validations to certain parts of the project.
HTML layout is created using the div tags, id attributes, classes, input, and buttons for submission. It defines the structure of the web page.