I put the checked attribute there and it is even checked on the website but it won’t let me pass?
Step 60
In order to make a checkbox checked or radio button selected by default, you need to add the checked
attribute to it. There’s no need to set a value to the checked
attribute. Instead, just add the word checked
to the input
element, making sure there is space between it and other attributes.
Make the first radio button and the first checkbox selected by default.
Answer: