Set 83 Practical Question

⭐ Q33 – CSS Hover Effect on Text (Color Change)

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head>
<title>Hover Effect</title>

<style>
h1{
    color: black;
    transition: 0.5s;
}

h1:hover{
    color: red;
}
</style>

</head>
<body>

<h1>Hover Over Me</h1>

</body>
</html>

Write Your HTML / JavaScript Code