Code - Collapsible Text
collapsible text
collapsible text
<details><summary>Title of the text here </summary>
paragraph text goes here....
</details>
collapsible text + iframe embed
collapsible text + iframe embed
<details>
<summary>Title of the text here </summary>
<iframe src="url" title="description"></iframe>
</details>
collapsible text + unorganized list
collapsible text + unorganized list
<details><summary>Title of the text here </summary>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
</details>
collapsible text + ordered list
collapsible text + ordered list
<details><summary>Title of the text here </summary>
<ol type="1">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</details>
type="1" -- numbered list (default)
type="A" -- uppercase letters list
type="a" -- lowercase letters list
type="I" -- uppercase roman numbers list
type="i" -- lowercase roman numbers list