xxxxxxxxxx
A text that uses A LOT the style tag:
<!doctype html>
<html>
<body>
<p class="example" style="border:solid 15px red; color: orange; background-color: blue; cursor: pointer; ">A text</p>
</body>
</html>
HTML Styles
xxxxxxxxxx
<!DOCTYPE html>
<html>
<body>
<p>I am normal</p>
<p style="color:red;">I am red</p>
<p style="color:blue;">I am blue</p>
<p style="font-size:50px;">I am big</p>
</body>
</html>