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