Interview Question

What is meter tag?

`<meter>` should be used for its proper HTML purpose.

💡 Concept ✅ Quick Revision 🌐 HTML

Answer

`<meter>` is an element that shows a value inside a known range. • It suits scores, disk use, or temperature, not task progress. • Browsers apply the native parsing and behavior defined for this element. • Using its native meaning helps assistive technology understand the content when the element has accessibility semantics.

💡 Simple Example

<meter min="0" max="100" value="75">75</meter>

⚡ Quick Revision

`<meter>` should be used for its proper HTML purpose.