Answers for "how to put a logo 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
-1

how to add a logo in html

<link rel = "icon" type = "image/png" href = "/icon.png">
    <!-- For apple devices -->
    <link rel = "apple-touch-icon" type = "image/png" href = "/icon.png"/>
Posted by: Guest on November-11-2021

Code answers related to "how to put a logo in html"

Browse Popular Code Answers by Language