Hello! I was following the project link above when it asked me to change a font to cursive. I did as it said, but instead of showing the cursive font, it showed the Comic Sans MS font which DEFINITELY wasn’t cursive. I found a link to the old forums here: https://www.codecademy.com/forum_questions/5578e45776b8fef62d0007f7
But I couldn’t follow the reply that well.
Hoping someone could help me with this.
Thanks!
Do you need to change it? If you use the generic family in your CSS,
font-family: cursive;
it will default to whatever your machine is set to. You can change your system settings, but be sure to research first so you know that you are replacing Comic Sans MS with another cursive font.
The simple approach that does not require any settings changes is to write a short list of cursive fonts,
font-family: font1, font2, font3, cursive;
where font1 is the font of choice, if available, font2 is the alternate, font3 is another alternate (in order of preference) and cursive is the fallback when none of the others are available on that system.