Build a Stylized To-Do List - Build a Stylized To-Do list

Tell us what’s happening:

Number ten i think it is:
inside the ul element with the class sub-item, you should have an anchor element with the class sub-item-link

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">

<head>
    <link rel="stylesheets" href="styles.css"
    <meta charset="utf-8">
    <title>Styled To-Do List</title>
</head>

<body>
<ul class="todo-list">
<li><input type="checkbox" id="learn"><label for="learn">Learn French</label><ul class="sub-item"><a class="sub-item-link" target="_blank" href="https://www.duolingo.com/">Start Here</a></ul>
    </li>
    <li><input type="checkbox" id="eat"><label for="eat">Eat Bacon</label><ul class="sub-item"><a class="sub-item-link" target="_blank" href="https://en.wikipedia.org/wiki/Bacon">Some Fun Facts</a></ul>
    </li>
    <li><input type="checkbox" id="drive"><label for="drive">Drive to Manchester</label><ul class="sub-item"><a class="sub-item-link" target="_blank" href="https://www.google.com/maps/@54.9845686,-1.687552,14z?entry=ttu&g_ep=EgoyMDI1MTEwOS4wIKXMDSoASAFQAw%3D%3D">Route</a></ul>
    </li>
    <li><input type="checkbox" id="feed"><label for="feed">Feed the Cats</label><ul class="sub-item"><a class="sub-item-link" target="_blank" href="https://www.zooplus.co.uk/shop/cats/dry_cat_food?utm_source=google&utm_medium=google_nonbrand&utm_campaign=56267557&utm_term=cat%20food&utm_content=1908122317&utm_id=56267557_1908122317&gclsrc=aw.ds&&mkt_source=118066&gad_source=1&gad_campaignid=56267557&gbraid=0AAAAAD9Xn6Ur0oL4GttUNQfoXY99KFRdN&gclid=EAIaIQobChMIw7_h6aztkAMVMpiDBx29py2SEAAYAiAAEgLD-_D_BwE">Order Online</a></ul>
    </li>
    </ul>
</body>

</html>
/* file: styles.css */
a {
  text-decoration: none;
}

a:link {
  color: rgba(108, 60, 125, 0.416);
}
a:visited {
  color: green;
}
a:hover {
  color: blue;
}
a:focus {
 border: red;
}
a:active {
  color: yellow;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36

Challenge Information:

Build a Stylized To-Do List - Build a Stylized To-Do list

you have an a being direct child of ul, that is not valid, you need to have li be direct descendant of ul

you can use an html validator to check more of these things Ready to check - Nu Html Checker