Dialog tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The dialog tag defines a dialog box or a window.
dialog element will make it easy to create popups or modals on web pages.
How to use dialog . tag
Example : Using dialog tag.
<!DOCTYPE html> <html> <head> <title>Học lập trình miễn phí tại web888.vn</title> <meta charset="utf-8"> </head> <body> <h1>Học lập trình miễn phí tại web888.vn</h1> <table> <tr> <th> January <dialog open>This is an open dialog window</dialog> </th> <th>February</th> <th>March</th> </tr> <tr> <td>31</td> <td>28</td> <td>31</td> </tr> </table> </body> </html>
Attributes of the dialog . tag
open – specifies the dialog element to be activated and the user to interact with.