Answers for "html tag for favicon"

1

favicon html link

<link rel="shortcut icon" href="http://example.com/favicon.ico" />
Posted by: Guest on June-14-2020
1

html favicon

<!-- Most Webbrowsers atomatically look for a favicon but you can also do this: -->

<head>
  <title>Favicon Demo</title>
  <link rel="icon" type="image/png" href="favicon.png">
</head>
Posted by: Guest on April-07-2021
3

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>
Posted by: Guest on September-13-2020

Browse Popular Code Answers by Language