I Have Updated the Font based on the desired outcome image and this Fixes #259 opened issue

This commit is contained in:
Bharath C Hegde 2023-06-03 11:48:19 +05:30
parent 07e096da6c
commit 614103cf87
2 changed files with 5 additions and 2 deletions

View File

@ -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 first element**: a black background and white text
* **The second element**: a yellow background * **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](./desired-outcome.png) ![desired outcome](./desired-outcome.png)

View File

@ -1,6 +1,9 @@
@import url(https://db.onlinewebfonts.com/c/ab7131d92890e9815ec8b4caec426740?family=Ascender+Serif);
.inverted, .inverted,
.fancy { .fancy {
font-family: Helvetica, "Times New Roman", sans-serif; font-family: "Ascender Serif", sans-serif;
font-size: 28px; font-size: 28px;
} }