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

Define a scalar measurement within a known range in HTML

王林
王林forward
2023-09-05 17:45:07754browse

Define a scalar measurement within a known range in HTML

Use the tag to define a scalar measurement. The HTML tag specifies a scalar measurement (gauge) within a known range.

Example

You can try running the following code to learn how to implement the tag in HTML -

<!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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete