About
Explore
Events & Classes
Support Us
Join
Sign In
mYnAmEiScHoCoBeAn
View Project Page
Run
Fullscreen
Rainbow Sparkles!
HTML
CSS
JS
<!-- Your new project - here it is! Create something awesome with the JUSTCodaborate code editor! Created by mYnAmEiScHoCoBeAn, subject to copyright. --> <!DOCTYPE HTML> <html> <head> <title>Page Title</title> <meta charset="utf-8"> <meta name="author" content="mYnAmEiScHoCoBeAn"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <div class="red"></div> <div class="orange"></div> <div class="yellow"></div> <div class="green"></div> <div class="blue"></div> <div class="indigo"></div> <div class="violet"></div> </body> </html>
.red { background-color: red; border-radius: 50%; width: 50px; height: 50px; } .orange { background-color: orange; border-radius: 50%; width: 40px; height: 40px; } .yellow { background-color: yellow; border-radius: 50%; width: 30px; height: 30px; } .green { background-color: green; border-radius: 50%; width: 20px; height: 20px; } .blue { background-color: blue; border-radius: 50%; width: 10px; height: 10px; } .indigo { background-color: indigo; border-radius: 50%; width: 5px; height: 5px; } .violet { background-color: violet; border-radius: 50%; width: 3px; height: 3px; }