Hi All
I am trying to validate my HTML with the W3C validator but it is proving to be more difficult that I thought.
In particular, I am getting lots of "document type does not allow element here" messages. Please can you tell me the correct order that elements should appear on an valid HTML page.
My HEAD is currently looking like this
Many thanks
Daniel
I am trying to validate my HTML with the W3C validator but it is proving to be more difficult that I thought.
In particular, I am getting lots of "document type does not allow element here" messages. Please can you tell me the correct order that elements should appear on an valid HTML page.
My HEAD is currently looking like this
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Webpage</TITLE>
<META name="author" content="">
<META name="title" content="">
<META name="description" content="">
<META name="keywords" content="">
<META name="generator" content="MSHTML 6.00.2900.2523">
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<LINK href="style/style.css" type=text/css rel=stylesheet>
<SCRIPT language=JavaScript type=text/JavaScript>
<!--
javascript functions here
//-->
</SCRIPT>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
</HEAD>
Many thanks
Daniel