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