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