Reputation: 583
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
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