Tutorials

https://vvcestudio.com.br/en/tutorial/html/details/
menu

HTML - TAG DETAILS

The HTML details (details) element is used as a tool from which the user will obtain additional information.

Here are 2 examples of TAG DETAILS.

see details
  • test 1
  • test 2
  • test 3
see detailsgoogle
youtube
GMAIL
HTML code:
x
<details>
<summary>see details</summary>
<ul>
    <li>test 1</li>
    <li>test 2</li>
    <li>test 3</li>
</ul>
</details>
<details>
<summary>see details</summary>
<a href="http://wwww.google.com" tabIndex="3" accessKey="g">google</a><br/>
<a href="http://wwww.youtube.com" tabIndex="1" accessKey="y">youtube</a><br/>
<a href="http://wwww.gmail.com" tabIndex="2" accessKey="m">GMAIL</a><br/>
</details>