CSS Styles
Cascading style sheets has much formats are there like header, paragraph , body and his classes and also we can use format on id. htmls are used for the purpose of css style.
CSS sample style:
body {
background-color: green ;
}
h1 {
color: yellow;
text-align: left;
}
p {
font-family: arial;
font-size: 10px;
}
Explanation :
Its simple style format for basic html
output data was background is green color and then header style was alignment left and also its color was yellow color
Next one was paragraph has also certain style and thare font size was 10 pixel and also that font style was arial black

