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