Guest User

Untitled

a guest
Dec 15th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. @font-face{
  2. font-family: "(fuente que quieras utilizar)"; //nombre de la tipografía (ejemplo:"Arial")
  3. src: url("carpeta-fuente/fuente.ttf"); //para buscar el archivo con tu fuente
  4. src: local(?), //en caso de que el navegador no la encuente(o no pueda leer el archivo) elegirá los siguientes formatos
  5. url("carpeta-fuente/fuente.woff") format("woff"), //especificas el nombre del archivo con el formato.
  6. url("carpeta-fuente/fuente.ttf") format("truetype");//especificas el nombre del archivo con el formato
  7. }
Add Comment
Please, Sign In to add comment