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