I need to move my image a bit to the right, but not fully.
This is what I currently have,
and this is how I need it to look like.
This is the code I have for the image currently:
<div>
<img src="../Hozier.png" width="245" height="600">
</div>
I am very new to HTML and really need some help. Thank you in advance.
3
Answers
You can add margin to the left side of the img element with CSS.
You can change the 100px value to move the image to the right more or less as needed.
You can do the following:
Or use positioning and other methods.
But the following code seems to be useless:
you can use position to move it
style:"position: relative; left: 10px"