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