CodeAgeBy Sitezack
HTML & CSS for BuildersYour first web page0 XP
Chapter progress0/5

Lesson 5 of 5

Add some color!

CSS dresses up your HTML. Your rules go inside a <style> tag.

A rule targets a tag and changes its properties: h1 { color: hotpink; }

<style>
  h1 { color: hotpink; }
</style>

🎯 Your mission

Add a <style> tag and give your h1 heading a color with the color property.

index.html
Loading editor…

Preview

Run your code to see your page here.