Problem using google fonts | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Problem using google fonts

By using Google fonts to make block quote marks, they are not appearing in this style 66 Block quote 99 But simple straight strokes, which is not desired, how to use Google fonts correctly to achieve it? Example of what I mean can be seen in the code: https://code.sololearn.com/WumV7aB5777u/?ref=app

15th Mar 2019, 5:51 PM
scientist
scientist - avatar
5 Answers
+ 11
Hi Aditya, In order to get the 66 and 99 style double quotes we ll need to use those characters specifically in our text. See the css #steve:before{ content: "\201C"; } #steve:after{ content:"\201D"; } We can also use Html code directly in the text as well. For Reference:- 66 or Left double quotation mark https://www.toptal.com/designers/htmlarrows/punctuation/right-double-quotation-mark/ 99 or Right double quotation mark: https://www.toptal.com/designers/htmlarrows/punctuation/right-double-quotation-mark/ https://code.sololearn.com/WJhYFcfcyLue/?ref=app
16th Mar 2019, 9:36 AM
Morpheus
Morpheus - avatar
+ 4
// Your code is work perfectly with Google Fonts.
15th Mar 2019, 5:56 PM
program
program - avatar
+ 2
What I mean to say is that they do not appear in the style 66 99 But as simple one sided strokes. I want the 66 99 styled quote marks
16th Mar 2019, 8:55 AM
scientist
scientist - avatar
+ 2
// Use the fonts in serif or handwriting.
16th Mar 2019, 8:59 AM
program
program - avatar
+ 2
Morpheus thank you so much!! 👍
16th Mar 2019, 10:21 AM
scientist
scientist - avatar