The style attribute
The style attribute allows you to write CSS code for a specific tag of an HTML page.
Example
Let's use the style attribute to set the first paragraph to a red text color and a font size of 20px:
<p style="color: red; font-size: 20px;">text</p>
<p>text</p>
: