I'm trying to change my website hyperlink image. For example, when I share the website on facebook, it appears a image related to the link (I want to change it).
<html>
<head>
<!-- maybe some link/href in here -->
</head>
[…]
</html>
I'm trying to change my website hyperlink image. For example, when I share the website on facebook, it appears a image related to the link (I want to change it).
<html>
<head>
<!-- maybe some link/href in here -->
</head>
[…]
</html>
You might try something like this icon link in your <head>
tag.
<head>
<link rel="icon" sizes="128x128" href="path/to/my/icon_128.png">
</head>