Define a Dialog Box in HTML



Use the <dialog> tag to define a dialog box in HTML. The following are the attributes −

Attribute
Value
Description
open
open
opens a dialog box and user can interact with it

Example

You can try to run the following code to learn how to work with <dialog> tag −

<!Doctype html>
<html>
   <head>
      <title>HTML dialog Tag</title>
   </head>
   <body>
      <h3>Tutorialspoint</h3>
      <p>We provide tutorials, quizzes, learning videos, etc.</p>
      <dialog open>Tutorials are free for all</dialog>
   </body>
</html>
Daniol Thomas
Daniol Thomas

Updated on: 2020-03-03T12:39:33+05:30

229 Views

Kickstart Your Career

Get certified by completing the course

Get Started