user13640702
user13640702

Reputation:

How do I change tab icon?

I am trying to change the tab icon of my website. Here's the image now: Tab Icon

I want to change it to this:

My custom icon

Here's my code to change the tab icon:

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

Upvotes: 0

Views: 4755

Answers (1)

Nimra Haider
Nimra Haider

Reputation: 239

Add the element to your index.html file right below the element. Your code should now be like this:

...
<title> Sammy’s First Website </title>
<link rel="shortcut icon" type="image/jpg" href="Favicon_Image_Location"/>
...

Make sure to replace Favicon_Image_Location with the relative file path of your favicon image.

Upvotes: 1

Related Questions