Re: [VE][111] Add Subject Here

Le 10 juil. 2011 à 01:32, Matthew Borcello a écrit :
> It asks if I forgot the = marking the separation between the attribute and the declared value. As you can see below my code is not missing anything of the sort.
The error is in fact on line 4, where you forget the end of your <meta> tag. Add « "> » after :
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1

Error 1, 2 and 3 are all three due to this single mistake.

Line 18, Column 12: document type does not allow element "CENTER" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag :
That's because you opened <h1> first, then <center>. You must do the reverse : <h1> is supposed to be inside <center>.

Line 20, Column 26: end tag for "FONT" omitted, but its declaration does not permit this
Line 20, Column 33: end tag for element "FONT" which is not open
and all other errors :
You must close tags in the REVERSE order you opened them, like this :
<b><i>Text</i></b>
and NOT :
<b><i>Text</b></i>

You need to think about element as being inside one another.

Best regards,

-- 
Etienne Miret

Received on Monday, 11 July 2011 20:48:03 UTC