Question on image embedding

In Image embedding, how do I locate/paste the image to a specific location on the page?

Hi @stephenbernad103,

You can wrap the image inside a div and then you can move the element using positioning.

<body>
  <div style="position:relative;left:10%;top:10%">
   <img src="abc.png"> 
  </div>
</body>

Do let me know in case you need further assistance.

1 Like