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