WhatsApp Link Generator

WhatsApp Link Generator

Financial Calculator

Loan Calculator

Results

Monthly Payment:

Total Payment:

Material Calculator

Material Calculator

The amount of material you need is:

Room Material Calculator

Room Material Calculator

Results

Amount of Material Needed:

Lighting Requirements Calculator

Lighting Requirements Calculator

Lighting Recommendations

Transaction Form

Transaction Form

Transactions

Transaction Name Transaction Type Amount

Total

0
Advanced Math Calculator
.calculator { background-color: #212121; } .display { width: 100%; height: 50px; border: 1px solid black; padding: 10px; } .buttons { width: 100%; display: flex; justify-content: space-between; } .button { border-radius: 5px; font-family: sans-serif; font-size: 18px; padding: 10px; } .button:hover { background-color: #333333; } var display = document.getElementById("display"); var buttons = document.querySelectorAll(".button"); function buttonClick(event) { var button = event.target; var value = button.value; if (value == "C") { display.value = ""; } else { display.value += value; } } for (var i = 0; i < buttons.length; i++) { buttons[i].addEventListener("click", buttonClick); }