More on selectors
h1, h2, .old { /* grouping like declarations */font-family: "Courier New";}p.angry { /* only <p> elements with class="angry" */color: red;}#username:hover { /* pseudo class */background-color: yellow;}CourierNew fontclass="old"old paragraph, by id="username"abcclass="angry"unhappy paragraph

there is alot of selector patterns you can use with CSS.