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