I'm trying to find which tag is responsible for displaying the site image when issuing a search result, but it doesn't work For example here how looks icon from my site but i want to set image like here how can i do this? PS i dont use wordpress
Looks like favicon to me: <link rel="icon" href="favicon.ico" type="image/x-icon"> Code (markup): Create a favicon image (search Google on that), upload it to your directory then rename it to favicon.ico and place the code above into your header file between <head></head>.
You are supposed to add a favicon to your website. Here's how to add it: <!-- Basic favicon --> <link rel="icon"type="image/x-icon"href="/favicon.ico"> HTML: <!-- PNG favicon --> <link rel="icon"type="image/png"href="/favicon.png"> HTML: <!-- Multiple sizes --> <link rel="icon"type="image/png"sizes="32x32"href="/favicon-32x32.png"> <link rel="icon"type="image/png"sizes="16x16"href="/favicon-16x16.png"> HTML: <!-- Apple Touch Icon --> <link rel="apple-touch-icon"sizes="180x180"href="/apple-touch-icon.png"> HTML: Add the necessary option to the <head> section on your website.
Usually, you'd want to check for the `<link rel="icon" href="path/to/favicon.ico">` tag in your HTML. If it's not working, maybe double-check the file path or clear your browser cache to see if that helps.