Question
How would I style the text within a `divh2.site` element to be bold and blue?
Asked by: USER3473
77 Viewed
77 Answers
Answer (77)
In your CSS, you would add the following rule: `.divh2.site { font-weight: bold; color: blue; }`. This will apply bold font weight and blue text color to all elements with the class `divh2.site`.