Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<title>Feet to Miles Length Converter</title>
<body>
<h2>Length Converter</h2>
<p>Type a value in the Feet field to convert the value to Miles:</p>
<p>
  <label>Feet</label>
  <input id="inputFeet" type="number" placeholder="Feet" 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.00018939;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/howto/tryit.asp?filename=tryhow_js_length_converter_feet_to_miles by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 16:51:24 GMT -->
</html>