I am currently doing a recipe project that requires a certain font and I don’t have the font and I am not sure how to go about getting it. The font style is called young serif I have a file with it but am unsure how to get it over to my visual studio.
2
Answers
you have 2ways for adding Young Serif from Google Fonts either in the head of your HTML file by adding this code as indicated in Google Fonts
or by adding this code into your CSS file
then to add the font in your class .myclass
I Hope this help
I use always google fonts. In visual studio, there is an extension called "Google Fonts Insert Link", that when you insert a font name (that exists, of course) it inserts the link to google fonts. In your case,
young serif
font link would be like this:you have to insert the css code (in the Mehdi’s answer) to change the
font-family
.Hope this answers your question