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