Including Web Fonts With Moovweb

216 views Asked by At

I am trying to include Google Fonts in my Moovweb site via @import url(http://fonts.googleapis.com/css?family=Oswald:400,300,700); and then including the tag 'Oswald' in font-family. I have done this before with static sites, but for some reason it is not working for me. I am not sure if I am placing the code in the right file? Seems like a simple fix, if someone could provide some guidance it would be greatly appreciated.

1

There are 1 answers

0
Wellington Lorindo On

Why are you using @import ? Can you not create the link tag on head of your file?

<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>

Is there any message on the console?