'Linking' (HTML)

KURTZ

Well-known member
HTML:
<a href="http://www.xyz.com" rel="nofollow">xxx.com</a>

HTML:
<a  rel="nofollow" href="http://www.xyz.com">xxx.com</a>

i'm wondering about these links: are the same? maybe there is something wrong?
 
Nothing wrong with the links.
The </br> is wrong, though. It should be <br />.

Where did you find the second one?
 
in a vB footer ... it shows the translator 'copyrights' ...
Never mind, then. :)

Btw, the order of attributes in an html tag does not matter. Both <a href="#" class="foo">…</a> and <a class="foo" href="#">…</a> will render exactly the same in your browser.
 
Top Bottom