Hi,
I took a long break after finishing HTML step 14 and now just when I resume the program, suddenly my step 15 instructions are missing. I don’t want to skip it so if anyone out there knows how to fix this please help.
Best Regards,
Hi,
I took a long break after finishing HTML step 14 and now just when I resume the program, suddenly my step 15 instructions are missing. I don’t want to skip it so if anyone out there knows how to fix this please help.
Best Regards,
It is a known bug.
Clear the browser cache and restart the browser. See if that helps.
It works bro. Thanks so much!
I think the instructions are not missing, but they are not very clear. You need to add the id attribute to the h2 element, not to the style element. The id attribute is used to identify a specific element on the page, and it should be inside the opening tag of that element. For example:
<h2 id=“cat-photo-app”>CatPhotoApp</h2>
Then, you can use the id selector in CSS to style that element. The id selector starts with a hash sign (#) followed by the id name. For example:
#cat-photo-app { font-family: Lobster; }
This way, you can apply the Lobster font only to the h2 element with the id of cat-photo-app.
it was missing as you can see on the screenshot I posted above.
Problem solved by @lasjorg
It was clearly a bug. “instructions suddenly missing” I cleared the browser cache and restarted the browser as instructed and it works. Got the instructions again
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.