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