普通 HTML 网站未显示图像

Trivial HTML site not showing an image

这个真的让我难住了。我已经删除了一个基本上 一切 的有问题的网站,剩下的是你能想象到的最琐碎的准系统网站:

    <!DOCTYPE html>
    
    <html lang="en">
    
    <head>
        <title>Test site</title>
    </head>
    
    <body>
    
        <img​ src​="http://placekitten.com/200/300" />
    
    </body>
    </html>

...然而,img 标签不起作用。我得到一个空网站 - W3 验证程序抛出 Element img​ not allowed as child of element body in this context. (Suppressing further errors from this subtree.) 之类的错误。我究竟做错了什么?我不知道什么会导致标记中出现问题,该标记基本上不包含 img 和所需元素以外的元素。

<!DOCTYPE html>
<html>
<body>
<img src="http://placekitten.com/200/300" alt="W3Schools.com" 
style="width:104px;height:142px;">
</body>
</html>

如评论所述,img和src后有2个不可见字符

我使用文本比较来解决这个问题,请参考随附的屏幕截图。