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