Forum Moderators: phranque
<table>
<tr><td>One</td></tr>
<tr><td>Two</td></tr>
<tr><td>Three</td></tr>
</table>
Example B
<table><tr><td>One</td></tr><tr><td>Two</td></tr><tr><td>Three</td></tr></table>
Would example A rank just as well as example B in the search engines, or would example A rank above example B for its structure?
-panic
The output viewed from a browser would look identical, and that's what most humans would see.
Personally I'm not too worried about designing websites for humans - animal websites will be the next big thing! I'm currently working on a web portal for monkeys.
That's not actually true. Image spacing will be rendered differently. For instance:
<img src="my.jpg" height="30" width="30">
<img src="my.jpg" height="30" width="30">
Will render with a space between the images.
<img src="my.jpg" height="30" width="30"><img src="my.jpg" height="30" width="30">
Will render without a space. Not a big difference, but this may be an issue for some pages.