Author Topic: <html> tag child elements?  (Read 972 times)

0 Members and 1 Guest are viewing this topic.

Offline William Grimsley

  • Forecaster
  • *****
  • Posts: 1103
    • Newton Poppleford Weather
<html> tag child elements?
« on: October 21, 2012, 04:58:36 AM »
Hi guys,

I am trying to validate a new monthly records page and I'm getting this validation error.

Code: [Select]
Line 724, Column 9: end tag for "html" which is not finished
  </html>

Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

Can you tell me how I solve this because I know how to validate some stuff but not this? :(

Thanks

Will
http://www.newton-poppleford-weather.co.uk
Davis Vantage Vue - Cumulus v1.9.4 (1084)
Weather Underground: IDEVONEX12
Met Office WOW: 717144
PWS Weather: ENG128597

 

anything