css tags in html code example
Example 1: how to link css to html
<link rel="stylesheet" href="PathToYourFile.css">
Example 2: how to link css to html
<link rel="stylesheet" href="file_name.css">
Example 3: how to style in html file
<p style="text-align: center; color: pink;">Hello World</p>