Needing explanation.

admin

Administrator
Staff member
Ok I'm making my first layout and right now I'm validating my table I made. First of all some problems I do not understand. You can explain 2 problems listed on the validator and another person can do 1 or 2 if you are feeling up to it. Thank you (Pretty much all of the problem explanations on the validator I do not understand)<br />
<br />
<!-- m --><a class="postlink" href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww28.brinkster.com%2Fwallshame%2FTEST.HTM">http://validator.w3.org/check?uri=http% ... 2FTEST.HTM</a><!-- m --><!--content-->Go and see this:<br />
<!-- m --><a class="postlink" href="http://www.w3.org/People/Raggett/tidy/">http://www.w3.org/People/Raggett/tidy/</a><!-- m --><br />
<br />
And yes, missing parts in your code:<br />
no TR tags<br />
<table><br />
<td><br />
has to be<br />
<table><br />
<tr><br />
<td><br />
<br />
And 2 times a body start tag.<br />
And this one is not closed with a ><br />
<BODY BGCOLOR="708090"><br />
<br />
=====<br />
Take the first body start tag out,<br />
and put the TR tags in.<br />
=====<br />
:rocker:<!--content-->Thanks but I have one other question.<br />
<br />
Error: required attribute "TYPE" not specified <br />
<br />
I'm confused about that check it out please if you are willing. I don't want to take up your time.<!--content--><BODY BGCOLOR="708090"> should also be:<br />
<body bgcolor="#708090"> <br />
<br />
<br />
<script language="javascript"> should be:<br />
<script language="javascript" type="text/javascript"><!--content-->
 
Back
Top