website/index.html
2025-02-26 21:50:27 +01:00

10 lines
295 B
HTML

<!DOCTYPE html>
<html>
<body>
<button commandfor="my-modal" command="show-modal" type="button">Click me to open</button>
<dialog id="my-modal">
Hey there!
<button commandfor="my-modal" command="close" type="button">Click me to close</button>
</dialog>
</body>
</html>