I have a site that has a footer where the following string is included to link internal links (I speak of an HTML document):
<a href="<?php echo url_for('nosotros/aviso-legal#top'); ?>" title="Aviso legal">
At the same time it has this parameter to reference the crumb:
<?php echo include_partial(
'nosotros/breadcrumbs',
array(
'nombreSeccion'=> 'Términos de servicio',
'tituloSeccion'=> 'Términos de servicio'
)
) ?>
Passing the validator W3C says that this format is not correct, but it does not tell me which would be the correct one.
Could someone tell me what would be the correct compatible format?