<!DOCTYPE html>
<html>
<body>
<p>Click the button to display an alert box.</p>
<button onclick="msgBoxFunction()">Click Me</button>
<script>
function msgBoxFunction()
{
alert("This is Message Box!");
}
</script>
</body>
</html>
<html>
<body>
<p>Click the button to display an alert box.</p>
<button onclick="msgBoxFunction()">Click Me</button>
<script>
function msgBoxFunction()
{
alert("This is Message Box!");
}
</script>
</body>
</html>
No comments:
Post a Comment