Multiple CSS Rules

CSS can apply different styles to multiple elements.

Preview

Code

<style>
h1{
color:#dc2626;
}
p{
font-size:18px;
}
</style>

<h1>CSS Introduction</h1>
<p>This paragraph has larger text.</p>

More CSS Introduction Examples (5)