Set 94 Practical Question

⭐ Q44 – HTML: Webpage with Colored Text + Blink + Marquee

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head>
<title>My City</title>

<style>
body{
    background-color: lightyellow;
}

.blink{
    color: red;
    animation: blink 1s infinite;
}

@keyframes blink{
    50%{
        opacity: 0;
    }
}
</style>

</head>
<body>

<h1 style="color:blue;">BHUNA CITY</h1>
<p style="color:red;">Main Market</p>
<p style="color:green;">Hanuman Mandir</p>
<p style="color:purple;">Bus Stand</p>

<marquee>Welcome to Bhuna - The City of Simplicity</div></marquee>

<p class="blink">Life Institute of Computer Technology</p>

</body>
</html>

Write Your HTML / JavaScript Code