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