Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML: How is favicon set at amazon dot com

Tags:

html

favicon

website icons (favicons) are usually set with

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

but not at amazon.com, hover web browser shows its [amazon] icon, how is it made?

like image 999
Andy Avatar asked Oct 04 '12 13:10

Andy


1 Answers

The majority of browsers look for favicon.ico in the root of the domain.

If you look at http://www.amazon.com/favicon.ico you'll see that is the case here

like image 194
freefaller Avatar answered Sep 28 '22 02:09

freefaller