inline css w3schools code example
Example 1: external css
<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css"></link>
</head>
<body>
Example 2: external style sheet
<link rel="stylesheet" type="text/css" href="mystyle.css">
Example 3: css inline
<p style="color:red">This text is red</p>