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