About
Explore
Events & Classes
Support Us
Join
Sign In
Coding with Rumaysa
View Project Page
Run
Fullscreen
Simple Webpage
HTML
CSS
JS
<!DOCTYPE HTML> <html> <head> <title>Page Title</title> <meta charset="utf-8"> <meta name="author" content="Coding with Rumaysa"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <div id="header" class="padding">Be Creative</div> <div id="subheading">A Simple Webpage</div> <div id="main" class="padding"> <p>Let's be creative together.</p> <img src="https://justcodaborate.org/project_assets/star.png"> </div> </body> </html>
body { margin: 0px; } .padding { padding: 25px; } #header { background-color: purple; color: white; text-align: center; font-size: 36pt; } #subheading { background-color: pink; padding: 10px; text-align: center; font-size: 16pt; } #main { background-color: beige; } img { width: 400px; height: 400px; display: block; margin: auto; }