Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to insert logo with the title of a HTML page?

Tags:

html

favicon

As stackoverflow.com has logo with it's title, how it can be done for any usual site? Which code is needed for this?

like image 705
Paic Ten Avatar asked May 21 '12 19:05

Paic Ten


People also ask

How do I add a logo to my HTML title?

To add a favicon to your website, either save your favicon image to the root directory of your webserver, or create a folder in the root directory called images, and save your favicon image in this folder. A common name for a favicon image is "favicon. ico".


1 Answers

Are you referring to the favicon?

Upload a 16x16px ico to your site, and link it in your head section.

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

There are a multitude of sites that help you convert images into .ico format too. This is just the first one I saw on Google. http://www.favicon.cc/

like image 52
MetalFrog Avatar answered Oct 08 '22 07:10

MetalFrog