How to paste images over one another: https://www.w3docs.com/snippets/css/how-to-position-one-image-on-top-of-another-in-html-css Fun fact about me, I rally like making digital collages! collaging on Neocities to be super low effort. I also might be doing it completely wrong. Whatever, in the end it works and that's all that matters. The html Step 1: open a new Neocities file, and make sure it ends with ".html"! Step 2: between the body tags, add your first image by using this code: Step 3: But wait, what if the image is too big/small? Never fear, you can adjust the image size by adding a width and height like so: Step 4: Now in order for the positioning to work, we're going to give our image a class. This is super easy and barely an inconvenience, just alter the code like this: The first part is done great job, now onto the CCS! The CCS Step 1: Within your style tags, paste this bit of code: .image1 { position: absolute; top: 10px; left: 220px; }