skip to Main Content

How do we give image as logo for title bar ?

I tried a image as logo for title as bar ,i used link tag to implemnt image, i also gave proper path to implement that image,but i couldn’t do this .please help me to overcome this problem.

2

Answers


  1. I believe the word you are looking for is "Favicon" it is the tiny image that displays in the tab for a webpage. More info here. I have also included some basic HTML that shows how to set your favicon. You will reference your desirwed image in place of "/images/favicon.ico".

    <head>
      <title>My Page Title</title>
      <link rel="icon" type="image/x-icon" href="/images/favicon.ico">
    </head>
    
    Login or Signup to reply.
  2. Logo or fev icon ?

    fev :

    <html>
    <head>
      <title>My Page Title</title>
      <link rel="icon" type="image/x-icon" href="/images/favicon.ico">
    </head>
    

    logo :

    <header>
    <img src="path/to/your/logo.png" alt="Logo">
    </header>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search