how to do inline css code example
Example 1: adding css to html
<head>
<!-- Linking external Css document -->
<link rel="stylesheet" href="styles.css">
<!-- Writing Css inside HTML element -->
<style>
...
</style>
</head>
Example 2: how to style in html file
<p style="text-align: center; color: pink;">Hello World</p>
Example 3: css inline
<p style="color:red">This text is red</p>