This page demonstrates the following style rules and HTML:
p.red { color: red }
p.green { color: green }
p.blue { color: blue }
...
<p class="red green blue">Sample text.</p>
<p class="green blue red">Sample text.</p>
<p class="blue red green">Sample text.</p>
Text in all three P tags should appear blue.
Use your browser's View Source option to see the full source
code.
Sample text.
Sample text.
Sample text.