About
Explore
Events & Classes
Support Us
Join
Sign In
SUPAMERY
View Project Page
Run
Fullscreen
Learning HTMl
HTML
CSS
JS
<!-- Your new project - here it is! Create something awesome with the JUSTCodaborate code editor! Created by SUPAMERY, subject to copyright. --> <!DOCTYPE HTML> <html> <head> <title>RUMAYSA IS A W E S O M E ! ! !</title> <meta charset="utf-8"> <meta name="author" content="SUPAMERY"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <button onclick="changeADiv()">click me!</button> <h1>How Awesome Ruamysa really is!</h1> <p>Hopefully she'll tell us <b>more</b> about herself!!! :DDDD XD. I love that girl she's amazing! Hopefully she'll be an amazing adult too! My dream would be... </p> <h2> To collaborate with her someday!!! YAY! <div id = "myDiv" class = "bordered-div"><h3>Hi Codaboraters!</h3></div> <a href= "www.animaljam.com"> </body> </html>
body { background: linear-gradient(to right,red,orange,yellow,green); color: purple; font-size: 20px; font-family: cursive; } .bordered-div { border: 5px double orange; padding: 10px; margin-top: 50px; margin: 0; background: linear-gradient(to bottom,pink,yellow); border-top-right-radius: 25px; color: red; }
alert("hello"); function changeADiv(){ document.getElementById("myDiv").style.display = "none"; }