You can think of CSS as defining the design the webpage.
CSS determines the colors, the fonts and the presentation of the webpage
Â
Â
CSS  =  Cascading  Style Sheets
1: Using inline styling ( with the style attribute)
2: Using page-specific styles ( with the style element)
3: Using an external style sheet
Let's explore each of them......👉Â
body {
background-color: red;
font-size: 20px;
}<link rel=”stylesheet” href=”./style.css” />** The End **