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