Ver Mensaje Individual
  #5 (permalink)  
Antiguo 09/02/2011, 02:59
ednella
 
Fecha de Ingreso: febrero-2011
Mensajes: 7
Antigüedad: 13 años, 2 meses
Puntos: 0
Respuesta: Problemas con el validador w3c

Muchas gracias. Eso me deja sólo cuatro errores:
Cita:
Validation Output: 4 Errors

1. Error Line 19, Column 98: there is no attribute "NAME"

…nline.com/imagenes/cabecera.gif" name="cabecera" alt="CABECERA" align="MIDDLE"…



You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
2. Error Line 36, Column 137: end tag for "SPAN" omitted, but its declaration does not permit this

…ishteacheronline.com" target="_blank">www.freespanishteacheronline.com</A></h4>


* You forgot to close a tag, or
* you used something inside this tag that was not allowed, and the validator is complaining that the tag should be closed before such content can be allowed.

The next message, "start tag was here" points to the particular instance of the tag in question); the positional indicator points to where the validator expected you to close the tag.
3. Info Line 32, Column 222: start tag was here

…" alt="Creative Commons" width="10%" border="0"></A><BR><SPAN LANG="en-US">This

4. Warning Line 43, Column 21: NET-enabling start-tag requires SHORTTAG YES

<p><a href= http://sites.google.com/site/freespanishteacheronlinees>Encuentr…



The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.
5. Error Line 43, Column 453: end tag for element "A" which is not open

…er <b>fácil de encontrar</b>.<br>Que lo disfrutes, y habla de nosotros.</a></p>



The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.

If this error occurred in a script section of your document, you should probably read this FAQ entry.
6. Error Line 47, Column 195: an attribute value must be a literal unless it contains only name characters

…OTTOM" alt="Creative Commons" width=10% border=0></A><BR>Esta obra está bajo u…



You have used a character that is not considered a "name character" in an attribute value. Which characters are considered "name characters" varies between the different document types, but a good rule of thumb is that unless the value contains only lower or upper case letters in the range a-z you must put quotation marks around the value. In fact, unless you have extreme file size requirements it is a very very good idea to always put quote marks around your attribute values. It is never wrong to do so, and very often it is absolutely necessary.
Gracias otr vez