how to add inline css code example
Example 1: how to link css to html
<link rel="stylesheet" href="PathToYourFile.css">
Example 2: css inline
<p style="color:red">This text is red</p>
<link rel="stylesheet" href="PathToYourFile.css">
<p style="color:red">This text is red</p>