Tell us what’s happening:
Please can anybody help? I have not been able to pass Test 8 and 9
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Favorite Icon Toggler</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<ul class="item-list">
<li>
bread
<button class="favorite-icon">♡</button>
</li>
<li>
beans
<button class="favorite-icon">♡</button>
</li>
<li>
egg
<button class="favorite-icon">♡</button>
</li>
</ul>
<script src="script.js"></script>
</body>
</html>
/* file: styles.css */
body {
font-family: Arial, sans-serif;
background-color: #f9fafc;
text-align: center;
margin-top: 40px;
}
.item-list {
list-style: none;
padding: 0;
max-width: 300px;
margin: 30px auto;
}
.item-list li {
background: #fff;
padding: 10px 15px;
margin: 10px 0;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
display: flex;
justify-content: space-between;
align-items: center;
}
.favorite-icon {
font-size: 22px;
cursor: pointer;
border: none;
background: transparent;
color: #aaa;
transition: color 0.3s ease, transform 0.2s ease;
}
.filled {
color: red;
transform: scale(1.3);
}
/* file: script.js */
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36
Challenge Information:
Build a Favorite Icon Toggler - Build a Favorite Icon Toggler