If you notice on this website there is the green symbol/logo next to the title of this webpage. It is on a tab if you are using Mozilla Firefox or Google Chrome. It is also next to where you type in the website. How do I put up a symbol using HTML?
How do I designate a logo next to the header of a webpage using HTML?
Collapse
X
-
Hi mariko;
Create an icon file (16×16, 32×32 or 64×64 pixel square) and save it to your website as the file "favicon.ic o". Almost all browsers look for this file. That's is what you are seeing.
UDT -
@Dormilich,
True what you say about the use of formats GIF, JPEG, PNG, etc as 'favicon' files. But for ease of compatibility for any browser then ICO is the way to go.
P.S. to use the other formats, don't forget the "rel" attribute, something like this:
<link rel="icon" type="image/png" href="http://mywebsite.com/imagefile.png">
UDTComment
Comment