I try to validate my web page and I get the UNESCAPED ERRORS due to the & characters in the image URL:
I tried to replace the & with %26 and also &  but the image became invalid.
Is there a way to solve this?
I try to validate my web page and I get the UNESCAPED ERRORS due to the & characters in the image URL:
I tried to replace the & with %26 and also &  but the image became invalid.
Is there a way to solve this?
Copyright © 2021 Jogjafile Inc.
 
                        
Replacing the
&with&is correct - but only for the HTML representation of the URL.If you paste the HTML representation of the URL into the address bar, then it won't work because the address bar expects a text representation of the URL.
The HTML representation of the URL will work fine when entered as the value of a
srcattribute.