Alert Dialog Box in JS || JavaScript Dialog Box
In this video,I explained the Alert Dialog Box. Feel free to comment. For more, please subscribe and press the BELL icon. The code is as follows -
HTML File -
<html>
<head> <title> Alert Dialog Box in JS </title> </head>
<!-- JS - Dynamic web pages
<script> </script>
Interaction with the users
<head> </head> <body> </body>
JS - Dialog boxes - alert, confirm and prompt
-->
<body>
<script language="javascript">
alert("Hi Everyone ...!!!");
document.write("<h1> Hello..!!! Welcome to my </h1> "+ "<b> channel </b>");
</script>
</body>
</html>
HTML File -
<html>
<head> <title> Alert Dialog Box in JS </title> </head>
<!-- JS - Dynamic web pages
<script> </script>
Interaction with the users
<head> </head> <body> </body>
JS - Dialog boxes - alert, confirm and prompt
-->
<body>
<script language="javascript">
alert("Hi Everyone ...!!!");
document.write("<h1> Hello..!!! Welcome to my </h1> "+ "<b> channel </b>");
</script>
</body>
</html>
Comments
Post a Comment