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