-
Which element defines additional details?
-
- <aside>
- <details>
- <summary>
- <main>
- None of these
Correct Option: B
The additional details that the user can view or hide on demand is specified by <details> tag. The content of <details> element should not be visible unless open attribute is set. This tag can be used for creating interactive widget that user can open and close. Main content of document is specified by <menu> element. <aside> defines some content aside from the content it is placed in.