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