About
Explore
Events & Classes
Support Us
Join
Sign In
purple_ghost
View Project Page
Run
Fullscreen
About me!
HTML
CSS
JS
<!DOCTYPE HTML> <html> <head> <title>Page Title</title> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1.0,shrink-to-fit=no,width=device-width"> </head> <body> <div class="heading-section"> <h1>Hello, I'm purple_ghost, a web developer!</h1> <a target="_blank" href="https://justcodaborate.org/users-87">my profile</a> </div> <div class="heading-line">About Me</div> <div class="text"> <p>I'm purple_ghost, a web developer! I am also the creator of JUSTCodaborate. I code (almost) everyday, I write books and I like to read just as much as I like to write! I also like to teach, talk with my friends, practice my Spanish skills and code something in JavaScript that I didn't know I knew how to do! I look forward to JUSTCodaborate becoming best platform on the planet ;P. </p> </div> <div class="heading-line">What I Can Code In</div> <div class="text"> <p>I can code in...</p> <ul style="list-style-type: square;"> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> <li>PHP</li> <li>(a little) Java</li> <li>(a little) C#</li> </ul> </div> </body> </html>
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap'); body { background: #fcba03; color: white; margin: 0; } .heading-section a { text-decoration: none; color: red; font-size: 18px; font-family: Bungee; } .heading-section { background-color: #6ade9c; padding: 10px; text-align: center; font-family: Lobster; } .heading-line { background: #7f2fbd; padding: 5px; text-align: center; font-size: 18px; font-family: Fredoka One; } .text { padding: 10px; font-family: Patrick Hand; font-size: 20px; }