HTML5 <dialog> Tag
The <dialog> tag is used to specify the dialog box or window. This tag is used to create a popup dialog and models on a web page. This tag is new in HTML5.
Syntax:
<dialog open> Contents... </dialog>
Attributes: This tag accepts a single attribute open which is used to specify the dialog element is active and the user can interact with the tag element.
Example:
HTML
<!DOCTYPE html> < html > < body > < h1 >< dialog > tag</ h1 > <!--This is an open dialog Tag--> < dialog open>Welcome to GeeksforGeeks</ dialog > </ body > </ html > |
Output:
Supported Browsers:
- Google Chrome 37.0
- Edge 79.0
- Firefox 98.0
- Opera 24.0
- Safari 15.4
Please Login to comment...