Forum Moderators: open
Line 6, character 117:
... l tips, vacation attractions"/>
^Warning: net-enabling start-tag; possibly missing required quotes around an attribute value
Line 7, character 23:
<style type="text/css">
^Error: element STYLE not allowed here; check which elements this element may be contained within
Line 12, character 56:
... ="stylesheet" type="text/css">
^Error: element LINK not allowed here; check which elements this element may be contained within
Line 14, character 111:
... tion with our helpful tips." />
^Warning: net-enabling start-tag; possibly missing required quotes around an attribute value
Line 14, character 111:
... tion with our helpful tips." />
^Error: element META not allowed here; check which elements this element may be contained within
Line 15, character 106:
... rdf+xml" title="ICRA labels" />
^Warning: net-enabling start-tag; possibly missing required quotes around an attribute value
Line 15, character 106:
... rdf+xml" title="ICRA labels" />
^Error: element LINK not allowed here; check which elements this element may be contained within
Line 16, character 304:
... 0 oe 0 of 0 og 0 oh 0 c 0))' />
^Warning: net-enabling start-tag; possibly missing required quotes around an attribute value
Line 16, character 304:
... 0 oe 0 of 0 og 0 oh 0 c 0))' />
^Error: element META not allowed here; check which elements this element may be contained within
Line 17, character 7:
</head>
^Error: end tag for element HEAD which is not open; try removing the end tag or check for improper nesting of elements
Line 19, character 6:
<body>
^Error: element BODY not allowed here; check which elements this element may be contained within
I really don't understand any of them, especially telling me the head tag isn't open. It absolutely is, as far as I can see, and needs a closing tag. Recreating the page from scratch gets me the same errors and the validators seem to find the '/' character to be incorrect when its automatically inserted by dreamweaver.
Any help would be appreciated.
[edited by: Netsmith at 8:40 pm (utc) on May 27, 2007]
<meta name="description" content="REMOVED." />
<link rel="meta" href="http://REMOVED.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
<meta http-equiv="pics-Label" content='(pics-1.1 "http://www.icra.org/pics/vocabularyv03/" l gen true for "http://REMOVED.com" r (n 3 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0) gen true for "http://www.REMOVED.com" r (n 3 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0))' />
</head>
Well, when I went to create a new basic html page I noticed it defaulted to xhtml transitional, although it appears my current page is 4.01 transitional.
Is there a way to alter a doc type after the page is created, or am I going to be copying everything all over again?
Thanks for your input.
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> but either close them all, or unclose them all - one or the other
[edit]
oh, and close this one as well:
<link href="style.css" rel="stylesheet" type="text/css">
<HTML>
<HEAD>
<meta http-equiv="Content-Language" content="en-us">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
<title>YOUR WEBSITE OR PAGE TITLE HERE</title>
<meta name="description" content="DESCRIPTION HERE">
<meta name="keywords" content="KEYWORDS,HERE,SEPARATED BY COMAS">
<meta name="robots" content="index,follow,all">
<link href="style.css" rel="stylesheet" type="text/css">
ANY OTHER SCRIPT YOU MAY HAVE HERE IN THE HEAD - THEN CLOSE THE HEAD
</HEAD>
<BODY>
ALL OF YOUR VISIBLE PAGE TEXT AND CONTENT HERE
THEN CLOSE THE BODY AND HTML AND YOU HAVE IT!
</BODY>
</HTML>
Don't use DW for simple html tasks, it is far more complicated than a simple html page needs.
I hope this helps. Let me know, maybe I can help more!
Thanks
Eden2000