+ 2
How to Change Webpage/website's Icon/Favicon in HTML.
This is not a question actually. i want to share that how to done it. put the same in your HTML Code <head> <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> </head> // here favicon.ico can be replace with your image URL.
2 ответов
+ 1
<head>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<title>My title</title>
</head>
You can also use .png format too :
<link rel="shortcut icon" type="image/png" href="fav.png"/>
+ 1
Looking for upvots ;)