I have already checked on the internet but there some videos but not in vscode i mean (visual studio code) please help me to finish my code with HTML.
Asked
Active
Viewed 6,008 times
-3
-
Does this answer your question? [Adding a favicon to a static HTML page](https://stackoverflow.com/questions/9943771/adding-a-favicon-to-a-static-html-page) – PEPEGA Dec 03 '19 at 10:37
-
There is nothing special with vs code, it's just a editor. Just add it to your html page – PEPEGA Dec 03 '19 at 10:38
3 Answers
0
Visual Code is just a development environment. You can do the same thing in a notepad. It's same as opening a picture with paint or photoshop. Different software, same use. If you found out what to add in your code from the video then you can do the same thing in vscode.

Jérémy
- 223
- 2
- 12
0
You just have to place this code inside your HTML header:
<link rel="shortcut icon" type="image/png" href="http://example.com/favicon.png"/>
replace the type with the right type of image and the href should be the path to

LeroyJenkFrettings
- 26
- 4
0
I noticed that in Firefox for Devs, I'm having issues and the favicon dosn't show up. Tried on Opera and works perfectly, even without the type="image/png" command. Keep in mind that.

ArgentuM
- 1