HTML5 - style Attributes code example
Example 1: html style tag
<style>
/* Put in CSS */
</style>
Example 2: style attribute in html
<p style="color: red; /* CSS */">Example</p>
<style>
/* Put in CSS */
</style>
<p style="color: red; /* CSS */">Example</p>