What hint are you getting? It should be telling you what you forgot to add. Once you fix that, you will get more hints telling you other things you forgot to add.
Actually, the second hint you will get is going to be misleading, because you did add it, you just added too many spaces that the tests weren’t expecting. As a general rule, for HTML attributes, do not add spaces around the equals sign.
FYI, these extra spaces in the title element do not appear to be an issue in my testing. I am able to get the code to pass with those spaces. Did you test this on your end? Were they keeping you from passing? If so, I would be interested to know what browser/OS combination you are using.
Thanks for your comment! Yes, it also passes here with these extra spaces. But in terms of writing clean code it’s a good practice to avoid extra/trailing spaces, so in my answers I usually recommend to fix it, to develop a good habit to do so.
Thanks for the clarification. I initially read your comment as implying that those spaces must be removed in order to pass and I was concerned it was going to add unnecessary confusion as to what needed to be done in order to get the code to pass. I would suggest you add a caveat next time letting them know that it is just a best practice suggestion and not a requirement.