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