Answers for "how to put logo in html"

22

images in html

<html>
  <head>
  </head>
	<body>
  <img src="exampel.end">
    </img>
  </body>
  
  
  </html>
Posted by: Guest on December-27-2019
16

images in html

<img src="image.jps">
//image.jpg is where you would put the inage source.
Posted by: Guest on December-27-2019
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
7

how to add image in html

<img src="logo.png" />
Posted by: Guest on April-11-2020

Browse Popular Code Answers by Language