<html>
<title>Stones to Kilograms Weight Converter</title>
<body>
<h2>Weight Converter</h2>
<p>Type a value in the Stones field to convert the value to Kilograms:</p>
<p>
<label>Stones</label>
<input id="inputStones" type="number" placeholder="Stones" oninput="weightConverter(this.value)" onchange="weightConverter(this.value)">
</p>
<p>Kilograms: <span id="outputKilograms"></span></p>
<script>
function weightConverter(valNum) {
document.getElementById("outputKilograms").innerHTML=valNum/0.15747;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/howto/tryit.asp?filename=tryhow_js_weight_converter_stones_to_kilograms by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:39:21 GMT -->
</html>