how to add a favicon link in html ?
ReportQuestion
3 years ago 748 views
To add a favicon to your website, add a <link> element to your "index.html" file, after the <title> element, like this:
<!DOCTYPE html>
<html>
<head>
<title>Website Name</title>
<link rel="icon" type="image/x-icon" href="/path/favicon.ico">
</head>
<body>
<h1>For heading</h1>
<p> For paragraph.</p>
</body>
</html>
Thread Reply