<!DOCTYPE html>
<html>
<body>
<h1>The meter form attribute</h1>
<form action="/action_page.php" method="get" id="form1">
First name: <input type="text" name="fname"><br>
<input type="submit" value="Submit">
</form>
<p><label for="anna">Anna's score:</label>
<meter id="anna" form="form1" name="anna" min="0" low="40" high="90" max="100" value="95"></meter></p>
<p><strong>Note:</strong> The form attribute of meter does not work in any of the major bowsers.</p>
</body>
</html>