html link with css file code example
Example 1: link css file in html
<link rel="stylesheet" href="styles.css">
Example 2: css without separate file
just add any style inside the first <p> or other element tag using style=" ;"
<p style="font-size: xx-large;">test</p>