Because of the semicolon we can use multiple statements of CSS code.

Let's change the font of our text while also setting the color to red.

<html><body><p">I'm the default font.</p><p style="color:red;font-family:arial;">I'm a different font.</p></body>
</html>
]]>

We can add as many changes as we want, as long as we use the semicolon between each one.