Add image in title bar

HtmlCssFaviconFont AwesomeGlyphicons

Html Problem Overview


How do I add image in title bar?

I have title- "Webnet"

Merging it with a FontAwesome Glyphicon's icon images as-

<title><i class="icon-user icon-black"></i>Webnet</title>

And I tried it replacing with image source-

<title><img src="assests/img/user-Hermosillo.png" ></img>Webnet</title>

But title shows innerHTML instead of showing image there.

Any help?

Html Solutions


Solution 1 - Html

That method will not work. The <title> only supports plain text. You will need to create an .ico image with the filename of favicon.ico and save it into the root folder of your site (where your default page is).

Alternatively, you can save the icon where ever you wish and call it whatever you want, but simply insert the following code into the <head> section of your HTML and reference your icon:

<link rel="shortcut icon" href="your_image_path_and_name.ico" />

You can use Photoshop (with a plug in) or GIMP (free) to create an .ico file, or you can just use IcoFX, which is my personal favourite as it is really easy to use and does a great job (you can get an older version of the software for free from download.com).

Update 1: You can also use a number of online tools to create favicons such as ConvertIcon, which I've used successfully. There are other free online tools available now too, which do the same (accessible by a simple Google search), but also generate other icons such as the Windows 8/10 Start Menu icons and iOS App Icons.

Update 2: You can also use .png images as icons providing IE11 is the only version of IE you need to support. You just need to reference them using the HTML code above. Note that IE10 and older still require .ico files.

Update 3: You can now use Emoji characters in the title field. On Windows 10, it should generally fall back and use the Segoe UI Emoji font and display nicely, however you'll need to test and see how other systems support and display your chosen emoji, as not all devices may have the same Emoji available.

Solution 2 - Html

Add this in the head section of your html

<link rel="icon" type="image/gif/png" href="mouse_select_left.png">

Solution 3 - Html

you should be searching about how to add favicon.ico . You can try adding favicon.ico directly in your html pages like this

<link rel="shortcut icon" href="/favicon.png" type="image/png">
<link rel="shortcut icon" type="image/png" href="http://www.example.com/favicon.png" />

Or you can update that in your webserver. It is advised to add in your webserver as you don't need to add this in each of your html pages (assuming no includes).

To add in your apache place the favicon.ico in your root website director and add this in httpd.conf

AddType image/x-icon .ico

Solution 4 - Html

You'll have to use a favicon for your page. put this in the head-tag: <link rel="shortcut icon" href="/favicon.png" type="image/png">

where favicon.png is preferably a 16x16 png image.

source: https://stackoverflow.com/questions/9943771/adding-a-favicon-to-a-static-html-page

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionManozView Question on Stackoverflow
Solution 1 - HtmlSamuel MacLachlanView Answer on Stackoverflow
Solution 2 - HtmlkarthickView Answer on Stackoverflow
Solution 3 - HtmlnanduView Answer on Stackoverflow
Solution 4 - HtmlerriemanView Answer on Stackoverflow