0

I want to know how to add an image logo as website title. for example if we open our gmail, it shows gmail logo in the title bar how to achieve this..

<title>
<img src="as.jpg"></img> Hello user 
</title>
araj
  • 91
  • 7

1 Answers1

0

What you're looking for is called a Favicon, it should not be confused with the title element, which should only contain text.

Something like this will work, assuming you've got favicon.png saved in the same directory.

<link rel="shortcut icon" type="image/png" href="/favicon.png"/>

You can add a title aswell, so your outcome could be something like this:

<head>
    <title>Awesome title</title>
    <link rel="shortcut icon" type="image/png" href="/favicon.png"/>
</head>

It's also common to use a .ico file instead, you can easily find an online converter for that.

Jonast92
  • 4,964
  • 1
  • 18
  • 32