h1{
color:red;
font-size: 100px;
}
img :hover {
background-color: gold;
}
.bacon{
background-color: green;
}
.broccoli{
background-color: red;
}
/*
.circular{
border-radius: 100%;
}
*/
#heading{
background-color: aquamarine;
}
/*ignore this. i typed this as stack overflow was giving me this error👉 'It looks like your post is mostly code; please add some more details.'.but there is nothing much to explain about this code.*/
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bacon Lovers website</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1 id="heading">For The Love Of Bacon</h1>
<p>bacon, bacon, bacon, bacon, and more bacon!</p>
<p>bacon, bacon, bacon, bacon, and more bacon!</p>
<p>bacon, bacon, bacon, bacon, and more bacon!</p>
<img class="bacon" src="https://emojipedia-us.s3.amazonaws.com/thumbs/240/apple/118/bacon_1f953.png" alt="bacon image">
<img class="broccoli circular" src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/325/broccoli_1f966.png" alt="broccoli image">
</body>
</html>
The hover effect for the image tag seems to be malfunctioning. Despite the code indicating that the background color should change to gold upon mouse hover, it does not appear to be working as intended.