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