Bueno, pues esa es mi pregunta, que si por ejemplo estos dos códigos son distintos para google:
Código:
<html>
<head>
<title>Título</title>
</head>
<body>
<img src="imagen.jpg>
<a href="index.html">Enlace</a>
</body>
</html>
Y este que esta más ordenado, influiría eso?:
Código:
<html>
<head>
<title>Título</title>
</head>
<body>
<img src="imagen.jpg>
<a href="index.html">Enlace</a>
</body>
</html>
Gracias de antemano por vuestra ayuda.