How can I add an image on top of another image?


How can I add two images one on top of the other like this?

you can wrap both image elements in a wrapper (e.g., a <div>) and set that wrapper’s position to relative. Then set the second image’s position to absolute and use negative bottom and left values so it sits exactly where you want (e.g., bottom: -80px; left: -60px;)