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