Set 75 Practical Question

⭐ Q25 – JavaScript: Show Alert Box

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head><title>Alert Example</title></head>
<body>
<h2>Alert Example</h2>
<button onclick="alert('Hello! This is an Alert Box')">Click</button>
</body>
</html>

Write Your HTML / JavaScript Code