Cascading Stylesheet
Cascading Stylesheet is used to describe the style of HTML document.
CSS Example:-
h1{
text-align:center;
color:#fff;
}
p {
font-size: 20px;
font-family: arial;
}
Types of CSS
- Internal CSS
- External CSS
- Inline CSS
Internal CSS
Internal CSS is use between …