Holen Sie sich das Gravatar -Bild
const email = "[email protected]",
const size = 80;
yourImg.src = `
http://www.gravatar.com/avatar/${MD5(email)}.jpg?s=${size}
`;
// *You can get the md5 hash using the command `md5 -s <email>` on your terminal
KostasX