details with html code example
Example: html details tag
<!DOCTYPE html>
<html>
<body>
<h1>The details tag</h1>
<details>
<summary>(Summary)</summary>
<p>(Details)</p>
</details>
<!-- Details + Summary tag works well together, details is clickable when ran in a program -->
</body>
</html>