You have no title element which is why thats marked as being wrong, and you also are not using the id correctly in almost every place. Look at your input, its the one place you can see the id being added correctly
I’m sort of confused because it says I should have an ID element with an id of title and that my #title should not be empty but doesnt mention having a title element anywhere
It seems like you’re using the id attribute as if it were an independent element when you intend to associate the id attributes with their respective elements. Attributes should be contained within the same <> tag as their associated elements. You do this correctly in your input element, where you create the element and assign it an ‘id=“name”’ attribute within the same <> tag.
Additionally, when the instructions state something like “your #title should not be empty”, the “#title” is simply referring to the element which has an id value of “title”. For example, your input element with an id value of “name” could be selected in CSS with the #name selector. Thus, once you successfully assign the proper id values to your elements and give the elements some content, these issues should be fixed.