- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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 optimum Attribute
The HTML optimum attribute define the range where the guage’s value is considered to be an optimum value in an HTML document. It can only be applied on meter HTML element.
Syntax
Following is the syntax −
<meter optimum=”number”></meter>
Let us see an example of HTML optimum Attribute −
Example
<!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 optimum Attribute Demo</h1> <p>Download:</p> <meter min="0" max="100" low="10" high="90" value="50" optimum="30"></meter> </body> </html>
Output
Advertisements