Raghavendra
Raghavendra

Reputation: 583

How to create a custom icon on .html page instead of the default chrome or explorer icon?

I have created a local web page and would like to have a custom icon for the page. For example if the page is food.html, instead of showing CHROME OR EXPLORER icon I would like to have food image as icon for food.html page.

Upvotes: 0

Views: 367

Answers (1)

Saliou673
Saliou673

Reputation: 227

you must set a custom icon for any html page.Example, for food.html, you create an icon named food.ico, add it to head tag:

<head>
    <link rel="icon" href="food.ico">
</head>

Upvotes: 3

Related Questions