Use on the webTotal Use [ 3959 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/1c2153d43ed45ccbf03a7adc6639ca1b?family=Ferret+Face+Expanded" 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/1c2153d43ed45ccbf03a7adc6639ca1b?family=Ferret+Face+Expanded);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Ferret Face Expanded";
src: url("https://db.onlinewebfonts.com/t/1c2153d43ed45ccbf03a7adc6639ca1b.eot");
src: url("https://db.onlinewebfonts.com/t/1c2153d43ed45ccbf03a7adc6639ca1b.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/1c2153d43ed45ccbf03a7adc6639ca1b.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/1c2153d43ed45ccbf03a7adc6639ca1b.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/1c2153d43ed45ccbf03a7adc6639ca1b.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/1c2153d43ed45ccbf03a7adc6639ca1b.svg#Ferret Face Expanded")format("svg");
}
2CSS rules to specify fonts
font-family: "Ferret Face Expanded";