<html>
<title>Kilometers to Feet Length Converter</title>
<body>
<h2>Length Converter</h2>
<p>Type a value in the Kilometers field to convert the value to Feet:</p>
<p>
<label>Kilometers</label>
<input id="inputKilometers" type="number" placeholder="Kilometers" oninput="LengthConverter(this.value)" onchange="LengthConverter(this.value)">
</p>
<p>Feet: <span id="outputFeet"></span></p>
<script>
function LengthConverter(valNum) {
document.getElementById("outputFeet").innerHTML=valNum*3280.8;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/howto/tryit.asp?filename=tryhow_js_length_converter_kilometers_to_feet by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:39:21 GMT -->
</html>