문제

I have found that the profile element of my head is showing up in the browser. The interesting thing is that it is only doing this for one page in particular, even though I have the profile element on every page of our website. The code is: and the link to the page it is occurring on is: http://www.oilpaintersofamerica.com/memberservices/contactmembership.cfm

Any ideas?

도움이 되었습니까?

해결책

You have two <script> tags inside the <head ...> start tag, before the profile attribute.
The browser tries to fix this by closing the start tag.

Therefore, it ends up parsing the literal text profile="http://www.w3.org/2005/10/profile"> inside your <head>.
For (I assume) compatibility reasons, any literal text inside the <head> is rendered in the page.

You need to fix your <head>.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top