
- HTML Tutorial
- HTML - Home
- HTML - Roadmap
- HTML - Introduction
- HTML - History & Evolution
- HTML - Editors
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Headings
- HTML - Paragraphs
- HTML - Fonts
- HTML - Blocks
- HTML - Style Sheet
- HTML - Formatting
- HTML - Quotations
- HTML - Comments
- HTML - Colors
- HTML - Images
- HTML - Image Map
- HTML - Frames
- HTML - Iframes
- HTML - Phrase Elements
- HTML - Code Elements
- HTML - Meta Tags
- HTML - Classes
- HTML - IDs
- HTML - Backgrounds
- HTML Tables
- HTML - Tables
- HTML - Table Headers & Captions
- HTML - Table Styling
- HTML - Table Colgroup
- HTML - Nested Tables
- HTML Lists
- HTML - Lists
- HTML - Unordered Lists
- HTML - Ordered Lists
- HTML - Definition Lists
- HTML Links
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML Color Names & Values
- HTML - Color Names
- HTML - RGB & RGBA Colors
- HTML - HEX Colors
- HTML - HSL & HSLA Colors
- HTML - HSL Color Picker
- HTML Forms
- HTML - Forms
- HTML - Form Attributes
- HTML - Form Control
- HTML - Input Attributes
- HTML Media
- HTML - Video Element
- HTML - Audio Element
- HTML - Embed Multimedia
- HTML Header
- HTML - Head Element
- HTML - Adding Favicon
- HTML - Javascript
- HTML Layouts
- HTML - Layouts
- HTML - Layout Elements
- HTML - Layout using CSS
- HTML - Responsiveness
- HTML - Symbols
- HTML - Emojis
- HTML - Style Guide
- HTML Graphics
- HTML - SVG
- HTML - Canvas
- HTML APIs
- HTML - Geolocation API
- HTML - Drag & Drop API
- HTML - Web Workers API
- HTML - WebSocket
- HTML - Web Storage
- HTML - Server Sent Events
- HTML Miscellaneous
- HTML - Document Object Model (DOM)
- HTML - MathML
- HTML - Microdata
- HTML - IndexedDB
- HTML - Web Messaging
- HTML - Web CORS
- HTML - Web RTC
- HTML Demo
- HTML - Audio Player
- HTML - Video Player
- HTML - Web slide Desk
- HTML Tools
- HTML - Velocity Draw
- HTML - QR Code
- HTML - Modernizer
- HTML - Validation
- HTML - Color Picker
- HTML References
- HTML - Cheat Sheet
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Character Entities
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
- HTML Resources
- HTML - Quick Guide
- HTML - Useful Resources
- HTML - Color Code Builder
- HTML - Online Editor
HTML - <dialog> tag
The HTML <dialog> tag is used to represent a dialog box, alert box, or subwindow.
The <dialog> tag has an open attribute, which indicates that the dialog is active and can be interacted with. If the open attribute is not set, the dialogue box will not appear on the screen, and the user cannot see it.
You can use the <dialog> element to display alert messages to the user when they click any from button.
Syntax
Following is the syntax of <dialog> tag −
<dialog>.....</dialog>
Attributes
The HTML <dialog> tag supports both Global and Event attributes. Additionally, it accepts a specific attribute, which is listed below.
Attribute | Value | Description |
---|---|---|
open | open | Indicates that the dialog is active and interactive. |
Example: Dialog Box Creation
The program below demonstrates the use of the HTML <dialog> tag. We are not using the open attribute inside the <dialog> tag, so after the program executes, no dialog box will be displayed because it is closed by default.
<!DOCTYPE html> <html lang="en"> <head> <title>HTML dialog box</title> </head> <body> <!--create a dialog element--> <p>Example of the HTML 'dialog' element</p> <dialog>Alert</dialog> </body> </html>
Example: Default Open Dialog Box
Here is an another example of an HTML <dialog> box. In this example, we create a dialog box using the <dialog> tag and include the open attribute inside the dialog element. As a result, when we execute the program, a dialog box will be displayed on the screen view.
<!DOCTYPE html> <html lang="en"> <head> <title>HTML dialog box</title> </head> <body> <p>Example of the HTML 'dialog' element</p> <!--create a dialog element--> <dialog open>Dialog box!</dialog> </body> </html>
Example: Styling Dialog Box
In the example below, we are create a dialog box using the HTML <dialog> tag and style it with CSS.
<!DOCTYPE html> <html lang="en"> <head> <title>HTML dialog box</title> <style> dialog { width: 100px; height: 50px; background-color: red; color: white; display: grid; place-items: center; border-radius: 5px; } </style> </head> <body> <p>Example of the HTML 'dialog' element</p> <!--create a dialog element--> <dialog open>Alert box!</dialog> </body> </html>
Example: Form in Dialog Box
In this example, we use the HTML <dialog> tag to create a dialog box. Inside the dialog element, we include a form with an "OK" button. The dialog box will disappear when the user clicks the "OK" button.
<!DOCTYPE html> <html lang="en"> <head> <title>HTML dialog box</title> <style> dialog { background-color: red; color: white; } </style> </head> <body> <p>Example of the HTML 'dialog' element</p> <!--create a dialog element--> <dialog open> <p>Warning!</p> <form method="dialog"> <button>Ok</button> </form> </dialog> </body> </html>
Supported Browsers
Tag | ![]() |
![]() |
![]() |
![]() |
![]() |
---|---|---|---|---|---|
dialog | Yes 37.0 | Yes 79.0 | Yes 98.0 | Yes 15.4 | Yes 24.0 |