Assigning inline style rules

<h2 style = "color:orange">
Heading color set by inline style</h2>
<p style = "color:fuchsia">

This paragraph is presented by inline style rules.</p>

<ul>
<li style = "color:red">
List Item #1
<li style = "color:green">
List Item #2
<li style = "color:blue">
List Item #3
</ul>

Results of the above:

Heading color set by inline style

This paragraph is presented by inline style rule.

  • List Item #1

  • List Item #2

  • List Item #3