Use on the webTotal Use [ 3022 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/023e739edbd30d489cd88bd6d00ba572?family=Fuente+Jalisco" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/023e739edbd30d489cd88bd6d00ba572?family=Fuente+Jalisco);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Fuente Jalisco";
src: url("https://db.onlinewebfonts.com/t/023e739edbd30d489cd88bd6d00ba572.eot");
src: url("https://db.onlinewebfonts.com/t/023e739edbd30d489cd88bd6d00ba572.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/023e739edbd30d489cd88bd6d00ba572.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/023e739edbd30d489cd88bd6d00ba572.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/023e739edbd30d489cd88bd6d00ba572.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/023e739edbd30d489cd88bd6d00ba572.svg#Fuente Jalisco")format("svg");
}
2CSS rules to specify fonts
font-family: "Fuente Jalisco";