Aug 12, 2021
Las 20 mejores tipografías de Google Fonts
Google Fonts, se ha establecido como el recurso tipográfico esencial para creativos digitales. La calidad y naturaleza “open source” de sus fuentes, las hace imprescindibles tanto para el uso personal como comercial. La mayor parte de las fuentes de Google Fonts cuentan con numerosos estilos. Otro de los factores clave es que están diseñadas optimizando la legibilidad de sus caracteres en dispositivos digitales. Además la interfaz resulta muy intuitiva y accesible, es muy fácil comparar fuentes y estilos rápidamente.
La tipografía web está viviendo un periodo de gran creatividad gracias a las sucesivas mejoras técnicas en CSS que nos permiten experimentar manipulando y animando caracteres, párrafos y layouts. Estamos hablando de CSS Shapes, Flexbox, CSS Grid y Variable Fonts. Hacía mucho tiempo que los diseñadores web anhelaban poder emular las composiciones del diseño editorial. Gracias a CSS Grid y Flexbox, podemos escapar de las constricciones del grid.
La nueva APi de Google Fonts viene con bastantes mejoras y con una selección de 10 excelentes Variable Fonts con diferentes características como fuentes con serifa, sans-serif, slab, fuentes display o monoespaciadas. Lo increíble de las variable fonts es que nos permite manipular y animar, a través de CSS, una serie de propiedades determinadas por el diseñador de la fuente. Algunas de estas propiedades se limitan al peso de la fuente, pero otras atañen a elementos ornamentales y estructurales de la misma. Resumiendo, las posibilidades creativas son enormes.Google Fonts Esenciales
No queremos demorarnos más, pasamos a mostrar selección de fuentes más valoradas por los diseñadores y el jurado de Awwwards. Algunas destacan por sus cualidades estéticas, otras por su versatilidad o cualidades funcionales. Todas ellas con familias tipográficas con numerosos estilos y pesos.
También hemos querido destacar fuentes que han sido especialmente diseñadas para interfaces y otras que son especialmente legibles en párrafos o resultan particularmente confortables para la lectura en dispositivos móviles.
- Alegreya
- B612
- Muli
- Titillium Web
- Varela
- Vollkorn
- IBM Plex
- Crimson Text
- Cairo
- BioRhyme
- Karla
- Lora
- Frank Ruhl Libre
- Playfair Display
- Archivo
- Spectral
- Fjalla One
- Roboto
- Montserrat
- Rubik
- Source Sans
- Cardo
- Cormorant
- Work Sans
- Rakkas
- Concert One
- Yatra One
- Arvo
- Lato
- Abril FatFace
- Ubuntu
- PT Serif
- Old Standard TT
- Oswald
Fonts Optimized for Legibility and Readability
How to use Web Fonts
At this point everyone knows how to use web fonts, but if you’re not sure, you only need to know that there are two ways. The first is to use web fonts services like Google Fonts, Webtype, Fonts.com or Typekit and download the font from their servers, as you’ll see in the following example: 1. Web font embedding services
The second is to host the font in your server and use @font-face rule in your stylesheet as you can see here: 2. Embedding fonts using the @font-face rule
Web font embedding services
Google Web Fonts (GWF) or Typekit are systems which allow the use of fonts hosted on their servers. GWF is free to use, does not require you to have an account, and has no limit on traffic or domains unlike Typekit. Typekit sets the cost of the service according to the number of domains in which the font is used, or the site’s monthly traffic. One of the most valued characteristics of GWF is the option to download a desktop version of the fonts for use in the project design phase.
Implementation
It really is quick and simple:
1. Choose a font. You can add it to your collection or use “quick-use” to generate the code and options for that font.
2. Copy and paste the code generated into your <Head>
<head> <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Tangerine"> </head>
3. The font is now accessible in your CSS code
body { font-family: 'Tangerine', serif; font-size: 48px; }
Here you can consult a extended manual for styles, script subsets, and using multiple fonts.
Embedding fonts using the @font-face rule
Fonts are hosted on the user’s server independently of external services. @font-face was a deprecated CSS2 rule that has been re-introduced in CSS3 specifications and is supported by almost all modern browsers. A web font is a customized font which is supported by different browers and comes in formats such as TTF, WOFF, EOT and SVG.
@font-face { font-family: 'ChunkFiveRegular'; src: url('Chunkfive-webfont.eot'); src: url('Chunkfive-webfont.eot?#iefix') format('embedded-opentype'), url('Chunkfive-webfont.woff') format('woff'), url('Chunkfive-webfont.ttf') format('truetype'), url('Chunkfive-webfont.svg#ChunkFiveRegular') format('svg'); font-weight: normal; font-style: normal; }