I am trying to get some code to pass W3C validation but having problems understanding whats wrong, here is the code
If you run this through the direct code checker at http://validator.w3.org/ Error 4 and Error 6 I can't figure out ?
On a side note are there any sites dedicated to helping with these errors to save me posting everytime in here ?
Thanks.
Code:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>AC Nielsen</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="Stylesheet" href="/files/style.css" type="text/css" />
<script type="text/javascript" language="javascript">
<!--
/* <![CDATA[ */
//Login
function doLogin() {
if (document.login.username.value && document.login.password.value) {
document.login.submit();
} else {
window.alert("Fejl i brugernavn eller password!");
}
}
function initLinks(){
var l = document.links;
for(i=0;l.length>i;i++)
l[i].onfocus = function(){this.blur();}
}
window.onload = initLinks;
/* ]]> */
//-->
</script>
</head>
<body>
<table cellspacing="0" cellpadding="3" width="460" border="0" align="left" style="text-align:left;" class="list">
<tr>
<td width="320" class="list">Jobtitel</td>
<td class="list" align="right" style="text-align:right;">Ansøgningsfrist</td>
</tr>
<tr>
<td class="list-item-light" width="300"><ul class="disc"><li><span class="link"><a href="/vacancy/18919/5897?iso=dk" target="_blank">Norsktalende telefonintervjuer</a></span></li></ul></td>
<td class="list-item-light" align="right" style="text-align:right;">
løpende</td>
</tr>
<tr>
<td class="list-item-dark" width="300"><ul class="disc"><li><span class="link"><a href="/vacancy/18828/5897?iso=dk" target="_blank">Dansktalende telefoninterviewer</a></span></li></ul></td>
<td class="list-item-dark" align="right" style="text-align:right;">
løbende</td>
</tr>
<tr>
<td colspan="4"> </td>
</tr>
<tr>
<td colspan="4" style="height:25px;"><b>Uopfordret ansøgning og CV</b></td>
</tr>
<tr>
<td colspan="4">Hvis du ikke finder det ledige job, du søger, kan du vælge at indtaste dit CV med en uopfordret ansøgning i vores CV database.<br />
<br />
<table width="350" border="0" cellspacing="0" cellpadding="0" align="left">
<form name="register" target="_blank" method="post" action="https://acnielsen.easycruit.com/career-center/login/register">
<input type="hidden" name="iso" value="dk" />
</form>
<form name="login" target="_blank" method="post" action="https://acnielsen.easycruit.com/career-center/login">
<input type="hidden" name="iso" value="dk" />
<tr>
<td width="150"><b>Brugernavn:</b></td>
<td><b>Adgangskode:</b></td>
</tr>
<tr>
<td width="144"><input type="text" name="username" class="field" value="" /></td>
<td><input type="password" name="password" class="field" value="" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" onfocus="this.blur();" name="login_btn" value=" Log på " class="knap" /></td> </tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td colspan="2"><span class="apply"><a href="/career-center/login/register?iso=dk" target="_blank">Ny bruger? - Registrer dit CV her</a>.</span></td>
</tr></form>
</table></td>
</tr>
</table>
</body>
</html>
If you run this through the direct code checker at http://validator.w3.org/ Error 4 and Error 6 I can't figure out ?
On a side note are there any sites dedicated to helping with these errors to save me posting everytime in here ?
Thanks.