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