<html>
<title>KPH to Knots Speed Converter</title>
<body>
<h2>Speed Converter</h2>
<p>Type a value in the KPH field to convert the value to Knots:</p>
<p>
<label>KPH</label>
<input id="inputKPH" type="number" placeholder="KPH" oninput="speedConverter(this.value)" onchange="speedConverter(this.value)">
</p>
<p>Knots: <span id="outputKnots"></span></p>
<script>
function speedConverter(valNum) {
document.getElementById("outputKnots").innerHTML=valNum/1.852;
}
</script>
</body>
</html>