CSS HTML INNER code example
Example 1: how to link your css file to html
<head>
<link rel='stylesheet' href='style.css'>
</head>
Example 2: how to style in html file
<p style="text-align: center; color: pink;">Hello World</p>
<head>
<link rel='stylesheet' href='style.css'>
</head>
<p style="text-align: center; color: pink;">Hello World</p>