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