Week 8 - Task 2

Make your own task/code overview

I want you to copy the source code from from the page HERE to your own home page. There's two ways of doing that. Go to the link above and

  1. right click and "View Page Source", then select all, copy and paste to a new file in your code folder
  2. right click and "Save Page As", and just save it in your code folder

This is the page you will keep track on your own progress of the tasks we are working on. When you have finished a task, you can mark it as checked and save the file. The way to mark it as checked is simply to add a boolean attribute called checked to the input tag.

Before (unchecked)

                <li>
                    <input type="checkbox" />
                    <a href="./week07/task-1.html">Task 1</a>
                </li>
            
After (checked)
                <li>
                    <input type="checkbox" checked />
                    <a href="./week07/task-1.html">Task 1</a>
                </li>
            


ALSO when you are finished with a task, update the link to point at your own solution/file.

Keep this file updated with your progress, this is the file I want you to send me every Wednesday