
CSS
css called cascading style sheet
css describes the style of html
css save a lot of works to developer
syntax of css
h2 {
color:red;
font-size:12px;
}
h2 - selection
color - property
red - value
color:red; - declaration
3 ways to add css styles in our html document
Inline...