Answers for "how to add logo in html"

17

html how to add an image

<img src="flowers.jpg" alt="flowers">

//Always add the image type (jpg,png, etc) Adding alt text
is also good coding practice :)
Posted by: Guest on March-04-2020
5

how to add an image in html

<img src="Add Image Source Here">
Posted by: Guest on November-07-2019
1

how to add an image in html

<img src="image.jpg">
Posted by: Guest on December-04-2020
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

Browse Popular Code Answers by Language