Home > Article > Web Front-end > Define a scalar measurement within a known range in HTML

Use the
You can try running the following code to learn how to implement the
<!DOCTYPE html>
<html>
<head>
<title>HTML meter Tag</title>
</head>
<body>
<meter value = "6" min = "0" max = "10">6 out of 10</meter>
<br />
<p>gauge value can be seen here</p>
</body>
</html>The above is the detailed content of Define a scalar measurement within a known range in HTML. For more information, please follow other related articles on the PHP Chinese website!