About
Explore
Events & Classes
Support Us
Join
Sign In
SUPERQUIZ
View Project Page
Run
Fullscreen
A forest - image
HTML
CSS
JS
<!-- Created by SUPERQUIZ, subject to copyright. --> <!DOCTYPE HTML> <html> <head> <title>Page Title</title> <meta charset="utf-8"> <meta name="author" content="SUPERQUIZ,Lilla Mardiui"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <div class="moon"></div> <div class="trees"> <div style="margin-left: 30px;" class="tree"></div> <div style="margin-left: 130px;" class="tree"></div> <div style="margin-left: 230px;" class="tree"></div> <div style="margin-left: 330px;" class="tree"></div> <div style="margin-left: 430px;" class="tree"></div> <div style="margin-left: 530px;" class="tree"></div> <div style="margin-left: 630px;" class="tree"></div> </div> </body> </html>
/* CSS by Lilla Mardiui, subject to copyright. */ body { background-color: #131862; overflow: hidden; } .moon { border-radius: 50%; background-color: #c9c9c9; width: 100px; height: 100px; margin-left: 600px; } .trees { margin-left: 10px; } .tree { position: fixed; background-color: #a5633c; width: 50px; bottom: 0%; height: 370px; }