#types of Css
1. Inline CSS
- 1. The Css code we write inside the opening tag is called as Inline Css.
- 2. To write Inline Css we use 'style' attribute.
2. Internal CSS
- 1. The Css code we write inside the Html document is called as Internal Css,
- 2. Here, we have to write css code inside <style></style> tag.
- 3. Style tag
- It is container tag.
- It is provided by Html to insert css code in document only. - 4. We have to place the style tag within the head tag.
- 5.
Syntax:-
1<head>2 <style>3 -- css code --4 </style>5</head>
3. External Css
- 1. The Css we are writing in a separate/different document is called as External Css.
- 2. To write External Css we have to create a separate document and this document should be saved with .css extension.
- 3. Now, to link external Css document with the Html we have to use <link> Tag (It is a non container tag).
- 4. <link> tag is used to attach external files to our webpage.
- 5. We have to use <link> tag within the head tag.
- 6.
Syntax:-
1<link rel='stylesheet' href='path-of-Css-file'>
4. Css Syntax
- 1. 1Selector {2 property: value;3}
- 2. Selector:- It is used to target Html Element on which we want to apply styling.
- 3. Property:- It is the property/styling we want to apply on the targetted element.
- 4. Value:- It is the value that we apply for the certain property.
- 1.