MASIGNASUKAv102
6510051498749449419

Feet to CM Converter Script File

Feet to CM Converter Script File
Add Comments
Monday, May 4, 2020
Feet to CM Converter Script File
Copy Code Or Download the Code
<!DOCTYPE html>
<html>
<title>Feet to cm Length Converter</title>
<body>

<h2>Length Converter</h2>
<p>Type a value in the Feet field to convert the value to cm:</p>

<p>
  <label>Feet</label>
  <input id="inputFeet" type="number" placeholder="Feet" 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.032808;
}
</script>
</body>
</html>

DEMO
Feet to cm Length Converter

Length Converter

Type a value in the Feet field to convert the value to cm:

cm: