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