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