January 22, 201016 yr Hello friends, I am getting this error in some places in my page but what exactly is causing this error Line 226, Column 35: document type does not allow element "a" here; missing one of "object", "span", "bdo", "applet", "iframe", "tt", "i", "b", "u", "s", "strike", "big", "small", "font", "em", "strong", "dfn", "code", "q", "samp", "kbd", "var", "cite", "abbr", "acronym", "sub", "sup", "label", "ins", "del" start-tag <a href="http://www.webdesigncut.com">WebSite maintenance</a><br /> ✉ The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element. One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
January 22, 201016 yr you haven't closed the a tag on the line above line 225 <a href="#">Site Redesigns<br /> </a> missing
January 22, 201016 yr Author you haven't closed the a tag on the line above line 225 <a href="#">Site Redesigns<br /> </a> missing i think that was the main error just going crazy
January 22, 201016 yr When you open a tag, you need to close it <a href="#">Site Redesigns<br /> Should be <a href="#">Site Redesigns</a><br />
Create an account or sign in to comment