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