Let's use the style attribute with the <p> tag to change the color of the text to red.

<html><body><p style="color:red;">I'm simply red.</p></body></html>
]]>

Perfect! Just like before, we wrote down a property name, added a colon and some value.

Because we want to change the color, we should start off with the word color. We then add a colon (:) and the color we want.