Set 52 Practical Question

⭐ Q2 – Webpage on Your City (Colors + Marquee + Blink)

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head>
<title>My City</title>
</head>
<body bgcolor="lightyellow">
<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; text-decoration:underline;">Bus Stand</p>
<marquee><b>Welcome to Bhuna - The City of Simplicity!</b></marquee>
<p style="color:orange; animation: blink 1s infinite;">
Life Institute of Computer Technology
</p>

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

Write Your HTML / JavaScript Code