CSS(Cascading Style Sheets)

css or Cascading Style Sheets use for style the html page .we can say it is a beauty of the html . we use css for style the html document and beautify the content .we can link css in different way.

1.Inline Css

2.Internal Css

3.External Css

  1. In inline css we can add the css properties in the line with the html.

  2. In Internal Css we have to add the <style></style> and after that we will add the properties and attributes of css in the html

  3. Most effective way to add css in the html document is external css. In the head section we have to link css. <link rel="stylesheet" href="styles.css"> is the way to link external css.