DNB5brims
DNB5brims

Reputation: 30598

How to set this icon for the web page?

I would like to know what is this little icon called? And how to set the icon for that? Thanks.enter image description here

Upvotes: 32

Views: 37192

Answers (3)

ozanmuyes
ozanmuyes

Reputation: 806

Probably you will be suffering after changing the favicon more than once, just keep that in mind; after every change of ico file change the href="favicon.ico?v=# -# means count of change-.

Upvotes: 3

dan radu
dan radu

Reputation: 2782

View source on SO, and you will see this link element:

<link rel="shortcut icon" href="http://cdn.sstatic.net/stackoverflow/img/favicon.ico">

Upvotes: 38

Ravi Jain
Ravi Jain

Reputation: 1482

It's called the icon of your web-page. To include this in page use

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

you insert this tag with in head tag and can be easily created using ms paint

Upvotes: 14

Related Questions