Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <title>Miles to cm Length Converter</title> <body> <h2>Length Converter</h2> <p>Type a value in the Miles field to convert the value to cm:</p> <p> <label>Miles</label> <input id="inputMiles" type="number" placeholder="Miles" 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.0000062137; } </script> </body> </html>