how to apply favicon in html code example
Example 1: html favicon
<head>
<title>Webpage</title>
<link rel="icon" type="image/gif/png" href="favicon.png">
</head>
Example 2: how to add favicon in html
<link rel="shortcut icon" type="image/png" href="Link to the image"/>
Example 3: html favicon
<link rel="shortcut icon" type="image" href="./favicons/examplefavicon.ico" />
Example 4: favicon for html page
<link rel="icon" type="image/png" href="/favicon.png"/>
<link rel="icon" type="image/png" href="https://example.com/favicon.png"/>
Example 5: how to add a favicon to html
<link rel='icon' href='favicon.ico' type='image/x-icon'/ >
Example 6: favicon html
<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US">
<head profile="http://www.w3.org/2005/10/profile">
<link rel="icon"
type="image/png"
href="http://example.com/myicon.png">
[…]
</head>
[…]
</html>