How paste a image in html

Question:
How to
Repl link:

code snippet

Hi @KarthikK48 , welcome to the forums!
You can upload the image into the repl by clicking the Upload File button.

use img tag to put image on website.

 <img src="sampleImage.jpeg" alt="sample image">

alt attiribute is used when image load failed.

sample repl : https://replit.com/@pman10/test-3?v=1

Also used for screen readers IIRC.