Tuesday 14 February 2017

Dialog Tag HTML 5

Dialog Tag HTML 5 Example

The HTML <dialog> element represents a dialog box or window. It makes it easy to create popup dialogs and modals on a web page. The <dialog> element accepts a boolean attribute called open that sets the element to "active" and allows users to interact with it.

<html>
<body>


<dialog open>
  Girfa : Student Help
</dialog>
</body>
</html>

Next Topic

No comments:

Post a Comment