Colors

Lesson 3
Author : Afrixi
Last Updated : October, 2017


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!
Table of Content

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>