Answers for "how to make logo on icon of website in html"

0

how to add a logo icon in HTML

<!DOCTYPE html>
<html>
  <head>
    <title>This is a title</title>
    <link rel = "icon" type = "image/png" href = "/icon.png">
    <!-- For apple devices -->
    <link rel = "apple-touch-icon" type = "image/png" href = "/icon.png"/>
  </head> 
</html>
Posted by: Guest on May-23-2021

Code answers related to "how to make logo on icon of website in html"

Browse Popular Code Answers by Language