About
Explore
Events & Classes
Support Us
Join
Sign In
Ashley Piper
View Project Page
Run
Fullscreen
Simple Webpage | Coding with Rumaysa Tutorial
HTML
CSS
JS
<!-- Created by Ashley Piper, subject to copyright. Coding with Rumaysa tutorial. --> <!DOCTYPE HTML> <html> <head> <title>Page Title</title> <meta charset="utf-8"> <meta name="author" content="Ashley Piper"> <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. Any project ideas?</p> <img src="https://justcodaborate.com/project_images/star.png"> </div> </body> </html>
body { margin: 0px; } .padding { padding: 25px; } #header { background-color: red; color: white; text-align: center; font-size: 36pt; } #subheading { background-color: pink; text-align: center; font-size: 16pt; padding: 10px; } #main { background-color: orange; } img { width: 400px; height: 400px; display: block; margin: auto; }