how to reference style in html code example
Example 1: html add style
<!-- add this line into the head tag -->
<link rel="stylesheet" type="text/css" href="yourstylesheetname.css">
<!-- remember to change the irl in href -->
Example 2: how to style in html file
<p style="text-align: center; color: pink;">Hello World</p>