1<!DOCTYPE html>
2<html>
3<body>
4
5<h1>The details tag</h1>
6
7<details>
8 <summary>(Summary)</summary>
9 <p>(Details)</p>
10</details>
11
12<!-- Details + Summary tag works well together, details is clickable when ran in a program -->
13
14</body>
15</html>
16