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