<html>
<body>
<p>Click the button to create a METER element with a specified value.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
const x = document.createElement("METER");
x.setAttribute("min", "0");
x.setAttribute("max", "100");
x.setAttribute("value", "65");
document.body.appendChild(x);
}
</script>
</body>
</html>