Reading-Notes

My journal for Code Fellows


Project maintained by RogerMReyes Hosted on GitHub Pages — Theme by mattgraham

CSS

Cascading Styel Sheets

CSS allows you to style and structure your web pages

CSS Syntax

The following example will specify what color and size the heading font will be
h1 {
color: red;
font-size: 5em;
}

Adding CSS

There are Three ways of inserting CSS

The last used style sheet will always be the style that will be applied

Return to Code 102 Table of Contents