How do we 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>

Updated on: 03-Mar-2020

172 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements