+ 2
What is the best way to make favicon if the image name "Face.png"? Please write the code.
3 Answers
+ 3
<head profile="http://www.w3.org/2005/10/profile">
<link rel="icon" type="image/png" href="/Face.png">
</head>
+ 2
thanks for your answer
+ 1
Just add an .ico image file that is either 16x16 pixels or 32x32 pixels. Then, in the web pages, add <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> to the <head> element.