Como poner fuentes personalizadas en tu web
- 1. Descargar fuente por ejemplo de Google Fonts
- 2. Convertir a formato woff2, por ejemplo con https://cloudconvert.com/ (ocupa mucho menos que ttf o woff)
- 3. subir fuente al FTP
- 4. poner en el style.css:
@font-face {
font-family: 'Sedan';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('font/sedan.woff2') format('woff2');
}
- TTF Support vs WOFF2 support
## Enlaces Relacionados
https://joyofcode.xyz/using-fonts-on-the-web#taking-a-closer-look-at-the-google-fonts-stylesheet
** No es necesario poner full URL en el style.css
** si utilizar .ttf, en el CSS hay que poner format('truetype');