Example of a Class Selector:
<p class="highlight">This is a highlighted paragraph.</p>
p.highlight {
color: red;
font-weight: bold;
}
Example of a Generic Class Selector:
<h1 class="common-style">Heading 1</h1>
<p class="common-style">This is a paragraph.</p>
.common-style {
font-family: Arial, sans-serif;
color: blue;
}