HTML low Attribute


The HTML low attribute define the range where the gauge’s value is considered to be a low value in an HTML document. It can only be applied on meter HTML element.

Syntax

Following is the syntax −

<meter low=”number”></meter>

Let us see an example of HTML low Attribute −

Example

Live Demo

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #8BC6EC;
      background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
      text-align: center;
   }
</style>
<body>
<h1>HTML low Attribute Demo</h1>
<p>Download:</p>
<meter min="0" max="100" low="10" high="90" value="50"></meter>
</body>
</html>

Output

Updated on: 17-Feb-2021

134 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements