Class and ID attributes can be used in selectors.
The syntax for selecting elements with a certain class attribute value includes using the period sign:
element.class-attribute-value {properties}
The syntax for selecting an element with a certain id attribute value includes using the hash (number) sign:
#id-value {properties}
In the stylesheet, add a rule that makes elements with class "audiolink" appear with bold font. Tip: the CSS property to use is called font-weight.
Add a rule that makes the heading with rule id="copyright" appear within a thick red border.