external css sheet code example
Example 1: external css
<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css"></link>
</head>
<body>
Example 2: how to style in html file
<p style="text-align: center; color: pink;">Hello World</p>