You should use border="0"
instead of border=none
Or better yet, since the border attribute is deprecated as of HTML 4.01 (source MDN), add a style
<img style="border:0" />
1
solved How to remove the border around an image in HTML file
You should use border="0"
instead of border=none
Or better yet, since the border attribute is deprecated as of HTML 4.01 (source MDN), add a style
<img style="border:0" />
1
solved How to remove the border around an image in HTML file