- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
HTML max Attribute
The max attribute of the <meter> element is used to set the upper bound for <meter>. However, the <meter> element is used to measure data with a give range like water impurity level and it is set using the min and max attribute.
Syntax
Following is the syntax −
<meter max="num">
The num above is a number in floating-point that sets the max attribute of the <meter> element.
Example
Let us now see an example to implement the max attribute of the <meter> element −
<!DOCTYPE html> <html> <body> <h2>Water Levels</h2> <p>Impurity Level <meter min="0" low="50" high="95" max="100" value="85"></meter></p> <p>TDS Level <meter min="0" low="20" high="80" max="100" value="60"></meter></p> </body> </html>
Output
This will produce the following output −
In the above example, we have displayed meter for water levels using the <meter>. For maximum value of the meter, we have used the max attribute −
TDS Level <meter min="0" low="20" high="80" max="100" value="60"></meter>
- Related Articles
- HTML DOM Progress max Property
- HTML DOM Meter max Property
- HTML checked Attribute
- HTML datetime Attribute
- HTML value Attribute
- HTML coords Attribute
- HTML hreflang Attribute
- HTML cite Attribute
- HTML cite Attribute
- HTML autocomplete Attribute
- HTML placeholder Attribute
- HTML required Attribute
- HTML target Attribute

Advertisements