DEV Community

Discussion on: Variable Fonts on the Web

Collapse
 
rhymes profile image
rhymes

Wow, totally didn't know they existed.

Do you know if Google Fonts has variable fonts?

Collapse
 
fridanyvall profile image
Frida Nyvall

That is a good question!
Did some digging and found fonts.google.com/earlyaccess (it's quite a long list, but search on the webpage for "variable"). I found 3 this way:

Cabin VF Beta, a sans-serif font.
github.com/impallari/Cabin
@import url(fonts.googleapis.com/earlyaccess/c...);
font-family: 'Cabin VF Beta', sans-serif;

Amstelvar Alpha, a serif font.
github.com/TypeNetwork/fb-Amstelvar
@import url(fonts.googleapis.com/earlyaccess/a...);
font-family: 'Amstelvar Alpha', serif;

Nunito VF Beta, a sans-serif font.
github.com/googlefonts/NunitoFont
@import url(fonts.googleapis.com/earlyaccess/n...);
font-family: 'Nunito VF Beta', sans-serif;

Collapse
 
rhymes profile image
rhymes

Thank you!