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