Skip to content
Loading
what is css and types of css
0
  • Jignesh Kumar
    Hi Shiva,
     
    You can download pdf from below links 
     
    https://web.stanford.edu/class/cs142/lectures/CSS.pdf
     
    https://www.tutorialspoint.com/css/css_tutorial.pdf
     
    +2
  • - Cascading Style Sheets (CSS) Designed to separate presentation from content.
    - CSS style sheets are the modern way to control the appearance and layout of your web pages.
    - They are used to control how elements are presented in the Web page.
    - Work with the common visual browsers (Internet Explorer, Firefox, Opera).
    - Used properly, can great simplify visual design, site management and content maintenance.
     
    HTML (content) and CSS (presentation) can be linked in three ways:
    1. Inline: the CSS rules in the style attribute, no selectors are needed here.
     
    2 . Embedded(internal): in the in a
     
     
    You can find more information on: https://www.w3schools.com/css/
    +1