About
Explore
Events & Classes
Support Us
Join
Sign In
Coding with Zayd
View Project Page
Run
Fullscreen
My new YT pfp!
HTML
CSS
JS
<!-- Colors by code-art. Created by zaydor, subject to copyright. --> <!DOCTYPE HTML> <html> <head> <title>Page Title</title> <meta charset="utf-8"> <meta name="author" content="zaydor"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <div class="circle"></div> <h1 class="coding">Coding</h1> <h1 class="with">with</h1> <h1 class="zayd">Zayd</h1> </body> </html>
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Akronim&display=swap'); body { align-items: center; justify-content: center; color: #9cff96; background-color: #10f502; } .circle { height: 200px; width: 200px; background-color: #33691e; border-radius: 50%; margin: auto; display: block; } .coding { font-family: "Akronim"; font-size: 40px; margin: auto; display: block; position: absolute; top: 5%; left: 43%; } .with { font-family: "Monoton"; font-size: 30px; margin: auto; display: block; position: absolute; top: 10%; left: 43%; } .zayd { font-family: "Comic Sans MS"; font-size: 30px; margin: auto; display: block; position: absolute; top: 16%; left: 44%; }