Home » HTML » Html miscellaneous » Question
  1. Which element creates a grouping of options?
    1. <optgroup>
    2. <select>
    3. <progress>
    4. <option>
    5. None of these
Correct Option: A

<progress> element in HTML shows an indicator indicating completion progress of a task, which is typically displayed as a progress bar. <select> element specifies control over a menu of options. <option> represent item contained in <select> element. <optgroup> element in HTML creates a grouping of options within <select> element. This element should not be nested. It includes global attributes like disabled, label and many more.



Your comments will be displayed only after manual approval.