Answers for "how to add a pic 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
22

images in html

<html>
  <head>
  </head>
	<body>
  <img src="exampel.end">
    </img>
  </body>
  
  
  </html>
Posted by: Guest on December-27-2019
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 image in html

<img src="[image link here]" alt="[alt text here]">

<!-- the src attribute defines an image link-->
<!-- the alt attribute shows text when the browser cannot show the image-->
<!-- When using semantics, the <img> should be surrounded by <figure> elements.-->

<figure>
  <img src="link.jpg" alt="an image">
</figure>
Posted by: Guest on February-25-2021
7

how to add image in html

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

how to add image in html

<body>
<img src="Image Link/path">
</body>
Posted by: Guest on February-03-2021

Browse Popular Code Answers by Language