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