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