Lesson 3 of 5
Your first stylesheet
Inside <style>, each rule targets a selector and applies properties.
The body selector applies to the whole page: perfect for background color and font.
<style>
body {
background: #12142a;
color: #e7e9ff;
font-family: sans-serif;
}
</style>🎯 Your goal
Add a <style>: change the body's background color (background) and the h1's color (color).
index.html
Loading editor…
Preview
Run your code to see your page here.