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