How would I style the text within a `divh2.site` element to be bold and blue?

Question

Grade: Education Subject: Ddos
How would I style the text within a `divh2.site` element to be bold and blue?
Asked by:
77 Viewed 77 Answers

Answer (77)

Best Answer
(195)
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`.