🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.

Day 23: Dialog (Modals)

HTML Masterclass
Current Task

Objective

Native popups/modals in HTML.

Step 1: Create a <dialog> tag with the open boolean attribute so it shows immediately.

Step 2: Inside, add a paragraph with "This is a modal".

index.html
<dialog open> <p>This is a modal</p> </dialog>

* Hint: Correct characters turn green, incorrect ones turn red.

Live Preview
🖼️

Verify your code to see the preview