This is a basic web application that performs addition of two numbers using HTML + JavaScript (DOM manipulation). It takes user input, processes it, and displays the result instantly.
- User-friendly input fields
- Real-time addition using JavaScript
- DOM manipulation for dynamic output
- Simple and beginner-friendly project
- HTML
- JavaScript (DOM)
π Project Folder
βββ index.html
- Enter two numbers in the input fields
- Click the Add button
- The result will be displayed instantly
- Uses
getElementById()to access input fields - Converts input values to numbers using
Number() - Performs addition
- Displays result in output field
- Download or clone the repository
- Open
index.htmlin any browser - Start using the app
- Beginner JavaScript practice
- Understanding DOM manipulation
- Learning event handling
- Add subtraction, multiplication, division
- Improve UI with CSS
- Add input validation
- Convert into a calculator app