Favicon in HTML


To add a favicon to an HTML document, the <link> tag is used within the <head> section of the HTML file. This tag specifies the relationship between the current document and an external resource, in this case, the favicon image.

Here is the basic structure of the <link> tag for a favicon:
<head>
  <title>My Page Title</title>
  <link rel="icon" type="image/x-icon" href="/images/favicon.ico">
</head>

Post a Comment

0 Comments