how to create a dialog message box in html code example
Example 1: how to make an alert in html
<script>
alert('this is an alert');
</script>
Example 2: javascript alert
alert("string");
<script>
alert('this is an alert');
</script>
alert("string");