<html>
<title>Stones to Ounces Weight Converter</title>
<body>
<h2>Weight Converter</h2>
<p>Type a value in the Stones field to convert the value to Ounces:</p>
<p>
<label>Stones</label>
<input id="inputStones" type="number" placeholder="Stones" oninput="weightConverter(this.value)" onchange="weightConverter(this.value)">
</p>
<p>Ounces: <span id="outputOunces"></span></p>
<script>
function weightConverter(valNum) {
document.getElementById("outputOunces").innerHTML=valNum*224;
}
</script>
</body>
</html>