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