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