Css basics

Cascading Style Sheet- Basics Cascading style sheet commonly known as CSS . It is used for styling the web pages . CSS SELECTORS : A CSS Selector selects the Html element you want to style . most commonly used css selectors are: simple selectors(it depends upon the class and id ) attribute selectors(it depends upon the tag in html) css can be added in three ways : external css(using the link to add the css page) internal css(In the head tag you can just open the style element add the styles and close the style element) inline css (Within in the body you can add the style tag) Syntax : ...