Header Ads Widget

Responsive Advertisement

simple unique calculator

Unique Calculator
body { font-family: Arial, sans-serif; background-color: #f0f0f0; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .calculator { background-color: #fff; padding: 20px; border-radius: 10px; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); } #display { width: 100%; font-size: 20px; padding: 10px; text-align: right; } .buttons { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 10px; margin-top: 10px; } button { font-size: 16px; padding: 10px; border: none; border-radius: 5px; cursor: pointer; background-color: #e0e0e0; } button:hover { background-color: #d0d0d0; } button:active { background-color: #c0c0c0; } let display = document.getElementById('display'); function appendToDisplay(value) { display.value += value; } function clearDisplay() { display.value = ''; } function calculateResult() { try { display.value = eval(display.value); } catch (error) { display.value = 'Error'; } } Documentation Step 1:- Open txt file from the folder for code Step 2:- Copy all code Step 3:- Open your website dashboard or blog Step 4:- Add HTML element Step 5:- Paste all code in your html element Step 6:- Save file Done you are successfully Pasted code in your website.

Post a Comment

0 Comments