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