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