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 which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, <head> generally requires a <title>, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.
</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 which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, <head> generally requires a <title>, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.
PHP-Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script language="JavaScript" src="draganddrop.js" type="text/javascript"></script>
<script language="JavaScript" type="text/javascript">
wmtt = null;
function showWMTT(id) {
wmtt = document.getElementById(id);
wmtt.style.display = "inline";
}
function hideWMTT() {
wmtt.style.display = "none";
}
function ShowWindow(item){
document.getElementById(item).style.display = 'inline';
}
function HideWindow(item){
document.getElementById(item).style.display = 'none';
}
function showSearchDiv(a){
var e=document.getElementById(a);
if(!e)return true;
if(e.style.display=="none"){
e.style.display="block"
} else {
e.style.display="none"
}
return true;
}
</script>
<link rel="StyleSheet" href="style.css" type="text/css">
</head>
MFG
MIKE
Kommentar