While we can import a google font by link method, how do we import by import method?
Hello @Aryankapoor. You should not import google fonts using the @import
method as it has a major performance issue and can slow down your project. I always use the link method and I recommend others to use it.
If you want to use the import method, you can do it by selecting @import
tab in Google Fonts while selecting the font family. There you will get the CSS code.
Happy Coding!
I am using the google font in a codepen project and I have a very long html code, I cannot go any longer. I need to use the import method
That was why I was asking, btw thanks
You have an option to put the link
tag inside the head
tag in CodePen by clicking on the settings icon at the top of the HTML code box and then paste the link
code inside the "Stuff for <head>
" box.
ok, that is a lifesaver