"special characters must be escaped" error

I keep getting the error,
Screenshot 2023-05-11 8.17.43 AM
on my glitch in bio. I think the incorrect because all of the other beginnings of each line before it were exactly how I am trying to make the website. What I am trying to do is to change the favicon frome the glitch logo to my own school’s logo.

Hi! You seem to have some problems with your code. Glitch is giving you that error because your markup is invalid. On line 10, you have something like this:

l<link rel="icon" "href"=https://example.com>

This is invalid markup. Here is the correct one:

<link rel="icon" href="https://example.com">
2 Likes

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.