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

Tell us what’s happening:

I input the right command to link my CSS to my HTML but it is not working, what wrong with my code?

Your code so far

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

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

<body>
    <h1>My TO-DO LIST</h1>
    <ul>
        <li><input type="checkbox" id="exam">
            <label for="exam">Complete Examination</label></li>
        <ul class="sub-item">
            <li class="sub-item-link"><a href="https://www.bing.com/ck/a?!&&p=7e176dc72033764fd6e46c4c4367f8e58abfea6d3532c15a08893dc13029772dJmltdHM9MTc3Mzk2NDgwMA&ptn=3&ver=2&hsh=4&fclid=06befd93-46dd-62fe-0f63-eb6747b663ca&psq=uniben+kofa+login&u=a1aHR0cHM6Ly93YWV1cC51bmliZW4uZWR1L2xvZ2lu" target="_blank">School Portal</a></li>
        </ul>
        <li>
            <input type="checkbox" id="j-script">
            <label for="j-script">Start Learning Javascript</label>
            <ul class="sub-item">
                <li class="sub-item-link">
                    <a href="https://www.bing.com/aclick?ld=e8V-02FWzWiDSR1mUM7w6JZjVUCUwaPi5kYqXwiqdod2fequX4t394gSZ7xiH0m71dNXJFJPvrJ368dCWAY2WK2qbumoGnYfjUZp6UvngdAQ5g_pTdSSUqlypkdkb8CxSszAFkGKkN4pAWKmYFZ9HNuFtOi9PZ8iHW9UZuc2KQQgYyJKre67AiLXhZX3pC1mZRQc8cEoCEyOVb7pgM8n_d7hoVqGY&u=aHR0cHMlM2ElMmYlMmZ3d3cudWRlbXkuY29tJTJmY291cnNlJTJmNTAtcHJvamVjdHMtNTAtZGF5cyUyZiUzZnV0bV9jYW1wYWlnbiUzZEJHLVNlYXJjaF9LZXl3b3JkX0FscGhhX1Byb2ZfbGEuRU5fY2MuUk9XLUVuZ2xpc2glMjZ1dG1fc291cmNlJTNkYmluZyUyNnV0bV9tZWRpdW0lM2RwYWlkLXNlYXJjaCUyNnBvcnRmb2xpbyUzZEJpbmctUk9XLUVuZ2xpc2glMjZ1dG1fYXVkaWVuY2UlM2RteCUyNnV0bV90YWN0aWMlM2RuYiUyNnV0bV90ZXJtJTNkXy5fYWdfMTMyNDkxMzg5OTkxODA1OV8uX2FkX18uX2t3X2phdmFzY3JpcHQlMjUyMGNvdXJzZSUyNnV0bV9jb250ZW50JTNkbyUyNmZ1bm5lbCUzZCUyNnRlc3QlM2QlMjZ1dG1fY2FtcGFpZ25faWQlM2Q2Mzg1OTYyMjclMjZtc2Nsa2lkJTNkNGM2ZTFjODkwMTFjMWZmZGNlZTA3NTM3MDEwNDI0ZGY&rlid=4c6e1c89011c1ffdcee07537010424df" target="_blank">JavaScript Course</a></li>
            </ul>
            <li>
                <input type="checkbox" id="s-project">
                <label for="s-project">Start Working on School Project</label>
                <ul class="sub-item">
                    <li class="sub-item-link">
                        <a href="https://www.bing.com/ck/a?!&&p=0d66bc50c133d0909b91a9a6764b38f07909dad5794ab687ea6e48febbff3efbJmltdHM9MTc3Mzk2NDgwMA&ptn=3&ver=2&hsh=4&fclid=06befd93-46dd-62fe-0f63-eb6747b663ca&psq=github&u=a1aHR0cHM6Ly9naXRodWIuY29tL2xvZ2lu" target="_blank">Research</a>
                  </li>
                </ul>
                <li>
                    <input type="checkbox" id="earn">
                    <label for="earn">Enter The Labour Force</label>
                    </li>
                    <ul class="sub-item">
                        <li class="sub-item-link">
                            <a href="https://www.bing.com/ck/a?!&&p=24d79cceab3b9cb286b0a3a2fc2d8cd5bba1f585a2cbf81f13eb3c959e786d86JmltdHM9MTc3Mzk2NDgwMA&ptn=3&ver=2&hsh=4&fclid=06befd93-46dd-62fe-0f63-eb6747b663ca&psq=upwork&u=a1aHR0cHM6Ly93d3cudXB3b3JrLmNvbS9hYi9hY2NvdW50LXNlY3VyaXR5L2xvZ2lu" type="_blank">Apply</a>
                        </li>

                    </ul>
    </ul>

</body>

</html>
/* file: styles.css */
 body {
  background-color: skyblue
}

Your browser information:

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

Challenge Information:

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

Can you describe what you mean here? What is not working?
(Are you able to see the results in the preview or is that not working? Or is there something else not working? Please provide a lot more information so we know what you’re needing help with)

Edit: if you need help finding errors in your html, consider using an online validator like this one:

(just copy your html into it, and it will show you a list of all errors found)
If you need help understanding the errors, let us know by posting what error you need help understanding.

Welcome to the forum @adakereefe !

Please double check the CSS filename.

Happy coding!