I have a problem with validation of my site with, mainly because of data/images base64 URIs.
Here is the diagnostic of https://html5.validator.nu/
Error: Malformed byte sequence: e9.
At line 2, column 259
(etc.)
As for https://validator.w3.org/ it simply says it cannot analyze the site.
What I have in my website is:
<a class=imgfr onclick='toggle("fr")' title=Français>
<img class=imfr
src="data:image/png,base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAIAAAAVyRqTAAAAjklEQVQ4jWM4cupJy7Qz2NGsM0+evfny6QsIfcMgHz15MqnnTV8LdnTqCEPLrCMsRnNwoSv33vz59wc7unbljpIIGPFgkkDTGYCuo8xoLOYCSaCHRl09VFytNurqUVcPpKuxG00VV2MPkGHpah4zylwNqsBmHQFXV5gkuAL79gU7glVgQPIJuNJCZgArMAD4cQgh3IjAhAAAAABJRU5ErkJggg=="
title=Francais alt=Français>
</a>
The document is declared as only
<!Doctype html>
I have in the head
:
<meta content="text/html; charset=utf-8" http-equiv=Content-Type>
Obviously I have checked several Q/A here like Embedding Base64 Images or How to display Base64 images in HTML, however these do not provide the answers to my question.
Also the one validator which works tells me that my http-equiv
below have bad value attribute:
<meta http-equiv="window-target" content="_top">
<meta http-equiv=Expires content="Sat, 26 Jul 1997 05:00:00 GMT">
<meta http-equiv=Pragma content="no-cache must-revalidate">
What should I do?