Set 73 Practical Question

⭐ Q23 – HTML Page Showing Warning (Blink + Marquee)

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head>
<title>Warning Page</title>
<style>
.blink{
    animation: blink 1s infinite;
}
@keyframes blink{
    50%{opacity:0;}
}
</style>
</head>

<body bgcolor="red">
<center>
<h1 class="blink">⚠️ WARNING ⚠️</h1>

<marquee><h2>Read the Message Carefully!</h2></marquee>
</center>
</body>
</html>

Write Your HTML / JavaScript Code