Answers for "favicon +"

Go
4

favicon

//Place these in the <head> section of your HTML
<link rel="icon" type="image/png" href="/favicon16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/favicon32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon96x96.png" sizes="96x96">
Posted by: Guest on September-12-2021
0

favicon specification

<!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 May-01-2020

Browse Popular Code Answers by Language