Note on Website Creation

<dialog>

Useful popup windows using some javascript

Hello! I'm a modal.

<dialog id="myDialog">
  <p>Hello! I'm a modal.</p>
  <button onclick="document.getElementById('myDialog').close()">Close</button>
</dialog>
<button onclick="document.getElementById('myDialog').showModal()">Open Modal</button>

details

Create collapsible section in pure HTML elements.

Click to expand Hidden content here!
<details>
  <summary>Click to expand</summary>
  Hidden content here!
</details>

Article tags: Miscellaneous

posted on: 2025-01-31, last edited on: 2025-01-31, written by: huijunchen