CSS - The basics

CSS referencing:

1. referece inside the element:

         

Hello World - 03 CSS

2. referece to styling block in the html:

         

hellow world

and in the head section of the file

      
      
3. referece to styling css file:

      

hellow world

in the head section of the file

      
      
The structure of the css file:

      p {
         font-size: 40px;
      }
      
All resulting the same design:

Big Green Font

back to main page