[VE][73] Error Message Feedback

I just wanted to know what is wrong whit this kind of start:



<!DOCTYPE HTML SYSTEM>
<head>
 <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
        <meta name="resource-type" content="document">
        <meta name="robots" content="index, follow">
        <meta name="keywords" content="Moduuli-Net Moduuli-Networks Garrett Risto Kaartinen">
        <meta name="distribution" content="global">
        <meta name="rating" content="general">
        <meta name="copyright" content="Risto Kaartinen">
        <meta name="author" content="Risto Kaartinen">
        <meta name="language" content="finnish">
        <meta name="doc-type" content="public">
        <meta name="doc-class" content="completed">
        <meta name="doc-rights" content="copywritten work">


<link href="tyyli.css" rel="stylesheet" type="text/css">
 <link rel="shortcut icon" href="http://moduuli.ma.cx/favicon.ico">
</head>



Validator says:
 
Line 22, column 6: end tag for "HEAD" which is not finished

</head>

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 (e.g. 'ul') which requires a child element (e.g. 'li') that you did not include. Hence the parent element is "not finished", not complete. 



And i dont understand what is wrong with that..? Thank you for helping! (only if you answer :)

Received on Wednesday, 3 August 2005 06:16:09 UTC