Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<style>
dialog {
width: 100px;
height: 100px;
background: green;
border: none;
outline: none;
}
</style>
<dialog id="dialog"></dialog>
<script>
onload = () => {
dialog.showModal();
}
</script>