Answers for "insert image"

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
0

how do i add an image

<img src="image-source" alt="Image Tag" width="Width" height="Height">

<!--image-source is the File Path or URL-->

<!--Have a nice Day!!! :)-->
Posted by: Guest on August-05-2021

Browse Popular Code Answers by Language