References

Collection of references for web development.

HTML summary tag

Description

The HTML <summary> element represents the heading used for a <details> element. The heading can then be clicked to view or hide the details.

Example

<details>
	<summary>Created by David Deacon</summary>
	<p>The author that brought you Exploring with Dave.</p>
</details>