Styling Multiple Elements

Example applying CSS styles to multiple elements.

Preview

Code

<style>
h2 { color: purple; }
p { color: gray; }
</style>

<h2>Section Heading</h2>
<p>Paragraph text styled with CSS.</p>

More HTML CSS Examples (9)