body { font-family: Arial, sans-serif; background: #f4f4f4; display: flex; justify-content: center; align-items: center; height: 100vh; } .calculator { border: 1px solid #ccc; padding: 20px; background: white; border-radius: 10px; } input[type="text"] { width: 100%; height: 40px; font-size: 1.5em; text-align: right; margin-bottom: 10px; } .buttons button { width: 23%; height: 50px; margin: 2px; font-size: 1.2em; cursor: pointer; }

Caluclator

Calculator
function appendValue(value) { document.getElementById('display').value += value; } function clearDisplay() { document.getElementById('display').value = ''; } function calculate() { const display = document.getElementById('display'); try { display.value = eval(display.value); } catch (e) { display.value = 'Error'; } }

Caluclator