Set 70 Practical Question

⭐ Q20 – Redirect + Popup + Print (JavaScript)

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head><title>JS Functions</title></head>
<body>
<h2>JS Redirect, Popup & Print</h2>
<button onclick="alert('Welcome to LICT!')">Popup</button>
<button onclick="window.print()">Print</button>
<button onclick="window.location='https://lictbhuna.in'">Redirect</button>
</body>
</html>

Write Your HTML / JavaScript Code