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