Example of attributes class and id:
<p class="random" id="not-random">some text</p>
Respective CSS selectors:
/* class Style for one or many elements*/.random {color:gold;background-color:black;}/* id Style for only one specific element*/#not-random {color:crimson;}