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