reading-notes

Class 05 - Design web pages with CSS

CSS stands for Cascading Style Sheets and is a language that is primarily used to change the default look of a HTML document.

There are three ways to insert CSS into a HTML document:

The following CSS would select all of the p tags within a document and make them red:

            p{
                color: red;
            }