Interview Question

What is progress tag?

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

💡 Concept ✅ Quick Revision 🌐 HTML

Answer

`<progress>` is an element that shows the progress of a task. • Use `value` and `max` when the amount is known. • 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

<progress value="60" max="100">60%</progress>

⚡ Quick Revision

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