Forum Moderators: open
I get an error when going to my website saying that the page might not display properly. The error is:
Line 4
Char 1
Code 0
Error: syntax error
Line 4 is
<script><endnote><head>
Here is the first couple of lines:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script></script>
<meta name="robots" content="follow">
I thought it might be because of the spaces, but I wasn't able to delete them. Anyone know why I get the error? Oh, I forgot to mention, I get the error in IE, not Firefox.
Thanks!
Zeek
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script>something here</script>
<script>something here</script>
<script>something here</script>
<script>something here</script>
<meta name="robots" content="follow">
</head>
<body>
</body>
</html>
-----
The <head> tag should only be used once. The script tags should be used for whatever script is there:
Ex.
<script language="JavaScript">some script</scipt>
Don't know what that endnote you put in there is?
Im pretty sure <meta name="robots" content="follow"> has no effect (but also has nothing to do with your error), but searchengines will follow your links even if you don't have it. Only no-follow and similar has any effect. (maybe someone will correct me on this if im wrong.)
I don't understand your question about the endnote.
Thanks again,
Zeek