All Rounder Tools Blogger-Best blog for blogger: Decimal to Binary converter Tool with colorful styling and all its features use any free library...

Wednesday, September 25, 2024

Decimal to Binary converter Tool with colorful styling and all its features use any free library...

 

Decimal to Binary Converter

Decimal to Binary Converter

Binary:

body { background-color: #f0f8ff; color: #333; } .title { color: #ff6347; margin-bottom: 20px; font-family: 'Arial', sans-serif; } .result { font-size: 1.5rem; margin-top: 20px; color: #4caf50; font-family: 'Courier New', Courier, monospace; } document.getElementById('convertButton').addEventListener('click', function() { const decimalInput = document.getElementById('decimalInput').value; const binaryResult = document.getElementById('binaryResult'); if (decimalInput === '' || decimalInput < 0) { binaryResult.textContent = 'Please enter a valid non-negative decimal number.'; } else { const binaryValue = Number(decimalInput).toString(2); binaryResult.textContent = 'Binary: ' + binaryValue; } });

No comments:

Post a Comment