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