Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<title>cm to Miles Length Converter</title>
<body>
<h2>Length Converter</h2>
<p>Type a value in the cm field to convert the value to Miles:</p>
<p>
  <label>cm</label>
  <input id="inputcm" type="number" placeholder="cm" oninput="LengthConverter(this.value)" onchange="LengthConverter(this.value)">
</p>
<p>Miles: <span id="outputMiles"></span></p>
<script>
function LengthConverter(valNum) {
  document.getElementById("outputMiles").innerHTML=valNum*0.0000062137;
}
</script>
</body>
</html>