@vinaymavi

Agenda

  • What is CSS
  • How to include in html page
  • Selectors 
  • Box-model
  • Display types
  • Positions 
  • Sudo elements 

What is CSS?

How to include in html file?

In-Line

<element_name style="rules" > 
    {element content}
</element>

In-Line

Embedded

<style>
    CSS_selectors{
     rules
    }
</style>

Embedded

Linked

<link 
    href='stylesheet_path' 
    rel='stylesheet'/>

Linked

Made with Slides.com