About
Explore
Events & Classes
Support Us
Join
Sign In
IS_is4me
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 padding"> <h1>Welcome to my website!</h1> </div> <div class="main padding"> <p>Hola! Bonjour! Salut! My name is IS_is4me (not really) and I'm currently learning advanced css. :)</p> <p> I am learning with JUSTcodaborate (made by Rumaysa Ahmed). XD</p> </div> <br> <div class="foods padding"> <h2>My favourite foods are... (in no particular order)</h2> <ol> <li>Chicken Burger!</li> <li>Rice!</li> <li>Cake!</li> <li>Turkey!</li> <li>Donuts! (hate jam filed ones)</li> <li>Stuffed crust pizza!</li> <li>Spaghetti bolognese!</li> <li>Mackerel!</li> <li>French fries!</li> </ol> </div> <br> <div class="colours padding"> <h2>My favourite colours are...</h2> <ol> <li>purple!</li> <li>blue!</li> <li>black!</li> </ol> </div> <br> <div class="hate padding"> <h2>I dont like... (in no particular order)</h2> <ol> <li>Jam donuts!</li> <li>Peas!</li> <li>Green!</li> <li>Avocado!</li> </ol> </div> <br> <div class="like padding"> <h2>I like... (in no particular order)</h2> <ol> <li>Reading!</li> <li>Creative writing!</li> <li>Coding!</li> <li>Sports!</li> <li>Watching TV!</li> <li>Baking!</li> <li>And much more! (I'm not going to list them all, I like a lot of things!)</li> </ol> </div> <> <div class="follow padding"> <h2>Now go and follow:</h2> <ol> <li>Me!(duh) https://justcodaborate.org/users-304</li> <li>My brothers: https://justcodaborate.org/users-49, https://justcodaborate.org/users-52 and https://justcodaborate.org/users-279</li> <li>My friends: https://justcodaborate.org/users-380 and https://justcodaborate.org/users-302</li> </ol> </div> <div class="footer padding"> <p> Copyright 2021 - IS_4me</p> <p> :D</p> </div> </body> </html>
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap'); body { background-color:#442678; font-size:17px; font-family: pacifico; margin: 0; } .padding { padding-top: 10px; padding-bottom: 10px; text-align: center; } .heading { margin-top: 20px; background-color: #5c33a2; color:white; font-family: Bungee; } .main { background-color: #8c4ef7; } .colours { background-color:#8c4ef7; } .foods { background-color:#8c4ef7; } .hate { background-color:#8c4ef7; } .like { background-color:#8c4ef7; } .follow { background-color: #5c33a2; }