Do you know which tag is responsible for this icon

Discussion in 'HTML & Website Design' started by paul moraves, Feb 22, 2025.

  1. #1
    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 Знімок екрана 2025-02-23 о 01.18.33.png
    but i want to set image like here Знімок екрана 2025-02-23 о 01.21.21.png

    how can i do this?
    PS i dont use wordpress
     
    paul moraves, Feb 22, 2025 IP
  2. qwikad.com

    qwikad.com Illustrious Member Affiliate Manager

    Messages:
    7,279
    Likes Received:
    1,696
    Best Answers:
    31
    Trophy Points:
    475
    #2
    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>.
     
    qwikad.com, Feb 22, 2025 IP
  3. kennedygitahi

    kennedygitahi Active Member

    Messages:
    48
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    63
    Articles:
    2
    #3
    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.
     
    kennedygitahi, Feb 22, 2025 IP
  4. GreenHost.Cloud

    GreenHost.Cloud Active Member

    Messages:
    472
    Likes Received:
    34
    Best Answers:
    3
    Trophy Points:
    73
    #4
    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.
     
    GreenHost.Cloud, Feb 23, 2025 IP