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