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

Tell us what’s happening:

I can’t seem to get 14, 15, 16, 17, 18 ,19, and I have linked my css to the html file, can you assist me

Your code so far

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

<head>
    <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <title>Styled To-Do List</title> 
 <link rel="stylesheet" href="style.css">
</head>

<body>
    <h1>My To Do List</h1>
    <ul class="todo-list">
      <li>
          <input type="checkbox" id="explore-html-lessons">
          <label for="explore-html-lessons">Explore HTML Lessons</label><ul class="sub-item"><li>
                  <a class="sub-item-link" href="https://www.freecodecamp.org/learn/responsive-web-design-v9/lab-stylized-to-do-list/build-a-stylized-to-do-list" target="_blank">HTML LINK</a></li>
              </ul>
        </li>
      <li>
          <input type="checkbox" id="doing-css">
          <label for="doing-css">Doing CSS</label>
          <ul class="sub-item">
              <li>
                  <a class="sub-item-link" href="https://www.freecodecamp.org/learn/responsive-web-design-v9/lab-stylized-to-do-list/build-a-stylized-to-do-list" target="_blank">CSS LINK</a></li>
</ul>
      </li>
      <li>
          <input type="checkbox" id="exploring-java">
          <label for="exploring-java">Exploring Java</label><ul class="sub-item"><li>
                  <a class="sub-item-link" href="https://www.freecodecamp.org/learn/responsive-web-design-v9/lab-stylized-to-do-list/build-a-stylized-to-do-list" target="_blank">Link to Java</a></li>
</ul>
      </li>
      <li>
          <input type="checkbox" id="learning-typescript">
          <label for="learning-typescript">Learning Typescript</label><ul class="sub-item"><li>
        <a class="sub-item-link" href="https://www.freecodecamp.org/learn/responsive-web-design-v9/lab-stylized-to-do-list/build-a-stylized-to-do-list" target="_blank">Link to lessons</a></li></ul>        
        </li>
     </ul>
</body>

</html>
/* file: styles.css */

.todo-list {
list-style-type: none;
 }

.sub-item-link {
text-decoration: none; 
color: blue;
}

.sub-item-link:visited {
  color: purple;
}

.sub-item-link:hover { color: red;
}

.sub-item-link:active {color: green;

}

.sub-item-link:focus {
  outline: 3px solid orange;
}


Your browser information:

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

Challenge Information:

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

hello and welcome to fcc forum

  • your imported stylesheet name has a typo in it!!

adjust that and you will see most of those issues will get resolved

happy coding :slight_smile:

are you sure about that?