0

How would I make a picture be in the title of the website using html

    <html>  
    <head> 

    <title src="android.jpg"> Androids apps </title>

    </head> 
    </html>  

That did not work does anybody know how to do that

GordonsBeard
  • 636
  • 4
  • 14

2 Answers2

5

I think you're referring to a Favicon

You can put a favicon.ico file in the root of the website or link to it in your head

<link rel="shortcut icon" href="favicon.ico" />
Brandon
  • 68,708
  • 30
  • 194
  • 223
0

I believe what you are looking for is favicon.ico

Here is a generator http://www.favicon.cc/

jbh
  • 1,153
  • 2
  • 11
  • 24