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