diff --git a/foundations/03-grouping-selectors/README.md b/foundations/03-grouping-selectors/README.md index 8b5d206..2ac579a 100644 --- a/foundations/03-grouping-selectors/README.md +++ b/foundations/03-grouping-selectors/README.md @@ -8,7 +8,7 @@ This will help you further practice adding classes and using class selectors, so * **The first element**: a black background and white text * **The second element**: a yellow background -* **Both elements**: a font size of 28px and a list of fonts containing `Helvetica` and `Times New Roman`, with `sans-serif` as a fallback +* **Both elements**: a font size of 28px and a list of fonts containing `Ascender Serif`, with `sans-serif` as a fallback ## Desired Outcome ![desired outcome](./desired-outcome.png) diff --git a/foundations/03-grouping-selectors/solution/solution.css b/foundations/03-grouping-selectors/solution/solution.css index 16e6760..d3cc977 100644 --- a/foundations/03-grouping-selectors/solution/solution.css +++ b/foundations/03-grouping-selectors/solution/solution.css @@ -1,6 +1,9 @@ + +@import url(https://db.onlinewebfonts.com/c/ab7131d92890e9815ec8b4caec426740?family=Ascender+Serif); + .inverted, .fancy { - font-family: Helvetica, "Times New Roman", sans-serif; + font-family: "Ascender Serif", sans-serif; font-size: 28px; }