Use of align tag in image

Please tell how add align tag in imgsrc tag

Hi @mr.atharvacharde,

keep your img tag inside a div then you can use the text-align attribute to align the image element.

<div style="text-align:center;">
   <img src="abc.png">
</div>

Or you can use the positioning in HTML https://css-tricks.com/almanac/properties/p/position/

Do let me know in case you need any other information.