Centimetre to Inches Calculator body { font-family: sans-serif; } h1 { text-align: center; } form { display: flex; justify-content: center; } input[type="number"] { width: 200px; height: 30px; font-size: 18px; } button { width: 100px; height: 30px; font-size: 18px; background-color: #4CAF50; color: white; border: none; cursor: pointer; } Centimetre to Inches Calculator Enter a value in centimetres: Convert Result: function convertCmToIn() { // Get the value from the input field var cm = document.getElementById("cmInput").value; // Convert the value to inches var inches = cm / 2.54; // Display the result document.getElementById("result").innerHTML = inches + " inches"; }