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