I have several small images in an HTML document that I want to make portable, for example. still works when sending email. I am using the following which works great:
<img src="data:image/png;base64,..."/>
The problem is that I want to use the same image many times in a document, but I don't want to repeat the entire base64 data string. I saw in letters where the data is encoded at a time, but many are mentioned. Is this possible with HTML?
source share