I am creating a website and i want to add a favicon to the title of the browser. i tried this code but nothing happened.
<html>
<link rel = "icon" type = "image/png" href = "/icon.png">
<head>
<title></title>
</head>
</html>
Try this, you need to put it inside your head element
<html>
<head>
<link rel="icon" type="image/png" href="YOURICONPATH/icon.png">
<title></title>
</head>
</html>