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