CSS - Style a Website
This course covers the basics of styling a website using CSS. Work your way through the videos/articles and I'll teach you everything you need to know to style a basic website!

Colors

Lesson 3
Author : GOUP
Last Updated : September, 2020


Code

Copy<header>
     <h1 style="color: CornflowerBlue;">Color Names</h1>
     <h1 style="color: #ff0000;">Hex Color Codes</h1>
     <h1 style="color: rgb(255, 0, 0);">RGB Color Codes</h1>
</header>