Anatomy of a website

Content: Text, Media

         HTML: Structure + Semantics

         CSS: Presentation + Design

         JS: Interactivity
         = Your Website

CSS = Cascading Style Sheets

CSS is a "style sheet language" that lets you style the elements on your page.

CSS is works in conjunction with HTML, but is not HTML itself.

CSS: What It can do?

                                           **All colored text, position, and size**

image.png

More examples: https://www.csszengarden.com/

Anatomy of CSS

CSS consists of style rules. Each style rule consists of a selector and declarations of property-value pairs:

selector {
  property: value;
  property: value;
}