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