|
|
|
|
|
|
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
![]() |
#1 |
That which does not kill us, will try, try again.
|
Make more money by making sure your links are valid html
I know that many webmasters don't bother validating their code. Not a good idea, for a variety of reasons. One of them is that unless you're validating your html code, you may never see any warnings to let you know that the sponsor links in your html pages may not be valid. And if they're not valid, it's possible that a surfer's browser won't read those links correctly, which could result in you not receiving credit for some of your sales.
The text below is from this page. It may help explain what I mean about sponsor links... Ampersands (&'s) in URLs A common error occurs when including a URL which contains an ampersand ("&"). Take a look at this example: Code:
<!-- This is invalid! --> <a href="foo.cgi?chapter=1§ion=2©=3&lang=en">...</a> To avoid problems with both validators and browsers, always use & in place of & when writing URLs in HTML: Code:
<a href="foo.cgi?chapter=1&section=2&copy=3&lang=en">...</a> --
__________________
"If you're happy and you know it, think again." -- Guru Pitka |
![]() |
![]() |
|
|