Answers for "html details tag"

1

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>
Posted by: Guest on March-13-2021

Browse Popular Code Answers by Language